xref: /relibc/include/bits/fcntl.h (revision ed19381547d66b76981ea1e4ff942c5a4da45ab7)
1 #ifndef _BITS_FCNTL_H
2 #define _BITS_FCNTL_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 int open(const char* filename, int flags, ...);
9 int fcntl(int fildes, int cmd, ...);
10 
11 #ifdef __cplusplus
12 } // extern "C"
13 #endif
14 
15 #endif
16