Update the changelog
[opencv] / apps / Hawk / CVEiCL / EiC / module / stdClib / src / fcntl.h
1 #ifndef FCNTLH_
2 #define FCNTLH_
3
4 #pragma push_safeptr
5
6 #include "sys/types.h"
7 #include "sys/fcntl.h"
8
9 #ifdef POWERPC
10 #define O_BINARY             0
11 #define O_TEXT               0
12 #endif
13
14
15
16 /* prototypes */
17
18 int open(const char *path, int access, ... /* mode_t mode */);
19 int creat(const char *path, mode_t amode);
20 int fcntl(int fd, int cmd, ... /* struct flock *flockptr*/);
21
22
23 #pragma pop_ptr
24
25 #endif
26
27
28
29
30
31