/* bits/fcntl.h: File control flags. */

#ifndef _BITS_FCNTL_H
#define _BITS_FCNTL_H

#define F_DUPFD 0
#define F_DUPFD_CLOEXEC 1
#define F_GETFD 2
#define F_SETFD 3
#define F_SETFL 4
#define F_GETFL 5

#define FD_CLOEXEC 1

#endif