Luna/libc/include/bits/atfile.h
apio 82e7b0e860
All checks were successful
continuous-integration/drone/push Build is passing
kernel: Introduce *at() syscall framework, add openat() and fstatat()
2023-04-15 20:26:15 +02:00

11 lines
157 B
C

/* bits/atfile.h: Definitions for *at() functions. */
#ifndef _BITS_ATFILE_H
#define _BITS_ATFILE_H
#define AT_FDCWD -100
#define AT_EMPTY_PATH 1
#endif