blob: e0ee379b1de442de7e5c383c14ff85f6936ff816 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <sys/cdefs.h>
__BEGIN_DECLS
#define F_DUPFD 0
#define F_GETFD 1
#define F_SETFD 2
#define F_GETFL 3
#define F_SETFL 4
int fcntl(int fd, int cmd, ...);
__END_DECLS
|