Luna/libc/include/bits/atfile.h
apio 88d1da59e8
All checks were successful
continuous-integration/drone/push Build is passing
kernel+libc: Add access()
2023-05-27 12:04:27 +02:00

16 lines
233 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
#define AT_SYMLINK_NOFOLLOW 2
#define AT_REMOVEDIR 1
#define AT_EACCESS 1
#endif