16 lines
233 B
C
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
|