OSDN Git Service

Initial revision
[uclinux-h8/uClibc.git] / include / fcntl.h
1 #ifndef __FCNTL_H
2 #define __FCNTL_H
3
4 #include <features.h>
5 #include <sys/types.h>
6 #include <linux/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