diff options
Diffstat (limited to 'flx/flx_fcntl.h')
-rw-r--r-- | flx/flx_fcntl.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/flx/flx_fcntl.h b/flx/flx_fcntl.h new file mode 100644 index 0000000..f1b6f73 --- /dev/null +++ b/flx/flx_fcntl.h @@ -0,0 +1,14 @@ +#ifndef __FLX_FCNTL_H__ +#define __FLX_FCNTL_H__ + +#define O_READ 0x0001 +#define O_WRITE 0x0002 +#define O_SORTED 0x0004 + + +#define INPUT_SORTED 0x0001 +#define OUTPUT_SORTED 0x0002 + +#define IS_SORTED 0x0001 + +#endif /* __FLX_FCNTL_H__ */ |