Luna/libc/include/bits/access.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

13 lines
177 B
C

/* bits/access.h: Definitions for the access() function. */
#ifndef _BITS_ACCESS_H
#define _BITS_ACCESS_H
#define R_OK 1
#define W_OK 2
#define X_OK 4
#define F_OK 0
#endif