mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2025-01-04 07:53:36 +01:00
10 lines
156 B
C
10 lines
156 B
C
|
#ifndef __BITS_FCNTL_H__
|
||
|
# define __BITS_FCNTL_H__
|
||
|
|
||
|
/* open/fcntl. */
|
||
|
#define O_RDONLY 0
|
||
|
#define O_WRONLY 1
|
||
|
#define O_RDWR 2
|
||
|
|
||
|
#endif /*__BITS_FCNTL_H__*/
|