Luna/libc/include/bits/fcntl.h
apio 770286a19d
All checks were successful
continuous-integration/drone/push Build is passing
kernel+libc: Implement fcntl() for F_DUPFD and F_DUPFD_CLOEXEC
2023-03-24 21:33:20 +01:00

10 lines
138 B
C

/* bits/fcntl.h: File control flags. */
#ifndef _BITS_FCNTL_H
#define _BITS_FCNTL_H
#define F_DUPFD 0
#define F_DUPFD_CLOEXEC 1
#endif