Skip to content
Snippets Groups Projects
fcntl.h 221 B
Newer Older
#ifndef _BITS_FCNTL_H
#define _BITS_FCNTL_H

#ifdef __cplusplus
extern "C" {
#endif

int open(const char* filename, int flags, ...);
int fcntl(int fildes, int cmd, ...);
#ifdef __cplusplus
} // extern "C"
#endif