2024-11-12 12:19:56 +02:00
|
|
|
#ifndef _YGGDRASIL_FCNTL_H
|
|
|
|
#define _YGGDRASIL_FCNTL_H 1
|
|
|
|
|
2024-11-15 11:14:08 +02:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2024-11-12 12:19:56 +02:00
|
|
|
int fcntl(int fd, int cmd, ...);
|
|
|
|
int open(const char *pathname, int opts, ...);
|
|
|
|
int openat(int atfd, const char *pathname, int opts, ...);
|
|
|
|
|
2024-11-15 11:14:08 +02:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2024-11-12 12:19:56 +02:00
|
|
|
#endif
|