Iros
 
Loading...
Searching...
No Matches
fcntl.h
Go to the documentation of this file.
1#pragma once
2
3#include <ccpp/bits/config.h>
4#include <ccpp/bits/off_t.h>
5
7#define O_RDONLY 0x0001
8#define O_WRONLY 0x0002
9#define O_RDWR 0x0004
10#define O_CREAT 0x0008
11#define O_EXCL 0x0010
12#define O_TRUNC 0x0020
13
14#define F_SETFD 1
15
16int open(char const* __CCPP_RESTRICT __path, int __flags, ...);
17int fcntl(int fd, int cmd, ...);
int open(char const *__CCPP_RESTRICT __path, int __flags,...)
int fcntl(int fd, int cmd,...)
#define __CCPP_RESTRICT
Definition config.h:62
#define __CCPP_END_DECLARATIONS
Definition config.h:8
#define __CCPP_BEGIN_DECLARATIONS
Definition config.h:7