1 #ifndef __FCNTL__H
2 #define __FCNTL__H
3 
4 #include <features.h>
5 #include <sys/types.h>
6 #include __SYSINC__(fcntl.h)
7 
8 #ifndef FNDELAY
9 #define FNDELAY	O_NDELAY
10 #endif
11 
12 __BEGIN_DECLS
13 
14 extern int creat __P ((__const char * __filename, mode_t __mode));
15 extern int fcntl __P ((int __fildes,int __cmd, ...));
16 extern int open __P ((__const char * __filename, int __flags, ...));
17 
18 __END_DECLS
19 
20 #endif
21