/* 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