Luna/libc/include/bits/access.h

13 lines
177 B
C
Raw Normal View History

2023-05-27 10:04:27 +00:00
/* 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