9 lines
204 B
C
9 lines
204 B
C
#ifndef _YGGDRASIL_FCNTL_H
|
|
#define _YGGDRASIL_FCNTL_H 1
|
|
|
|
int fcntl(int fd, int cmd, ...);
|
|
int open(const char *pathname, int opts, ...);
|
|
int openat(int atfd, const char *pathname, int opts, ...);
|
|
|
|
#endif
|