9 lines
209 B
C
9 lines
209 B
C
#pragma once
|
|
#include <ygg/fcntl.h>
|
|
#include <ygg/types.h>
|
|
|
|
int open(const char *pathname, int flags, ...);
|
|
int openat(int dfd, const char *pathname, int flags, mode_t mode);
|
|
|
|
int fcntl(int fd, int cmd, ...);
|