Files
RedBear-OS/include/bits/fcntl.h
T
2018-03-27 21:13:11 -06:00

8 lines
138 B
C

#ifndef _BITS_FCNTL_H
#define _BITS_FCNTL_H
int open(const char* filename, int flags, ...);
int fcntl(int fildes, int cmd, ...);
#endif