9adc18313d3820dc9f84fc8487164022938b55b4
[yaffs2.git] / direct / python / yaffs_swig_helper.c
1 /*
2  * These are some dangly bits that need to be built to wrap up the rest of the yaffs test harness
3  * in SWIG.
4  *
5  * This is also the place where extra debugging stuff might end up.
6  *
7  */
8  
9 #include "yaffsfs.h"
10
11 int simulate_power_failure;
12 int random_seed;
13
14 int yaffs_print_constants(void)
15 {
16         printf( "O_CREAT........%d\n",O_CREAT);
17         printf( "O_RDONLY.......%d\n",O_RDONLY);
18         printf( "O_WRONLY.......%d\n",O_WRONLY);
19         printf( "O_RDWR.........%d\n",O_RDWR);
20         printf( "O_TRUNC........%d\n",O_TRUNC);
21 }