omos-tcnj2024/sys/include/fcntl.h

10 lines
136 B
C
Raw Normal View History

2024-02-18 13:38:08 +01:00
#ifndef FCNTL_H
#define FCNTL_H
#define O_RDONLY 0x0000
#define O_WRONLY 0x0010
#define O_RDWR 0x0020
#define O_CREAT 0x0200
#endif