2023-04-15 20:26:15 +02:00
|
|
|
/* bits/atfile.h: Definitions for *at() functions. */
|
|
|
|
|
|
|
|
#ifndef _BITS_ATFILE_H
|
|
|
|
#define _BITS_ATFILE_H
|
|
|
|
|
|
|
|
#define AT_FDCWD -100
|
|
|
|
|
|
|
|
#define AT_EMPTY_PATH 1
|
2023-05-20 21:46:31 +02:00
|
|
|
#define AT_SYMLINK_NOFOLLOW 2
|
2023-04-15 20:26:15 +02:00
|
|
|
|
2023-04-18 19:36:29 +02:00
|
|
|
#define AT_REMOVEDIR 1
|
|
|
|
|
2023-05-27 12:04:27 +02:00
|
|
|
#define AT_EACCESS 1
|
|
|
|
|
2023-04-15 20:26:15 +02:00
|
|
|
#endif
|