10 lines
138 B
C
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
|