diff options
author | Roland McGrath <roland@gnu.org> | 2006-01-06 12:14:26 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2006-01-06 12:14:26 +0000 |
commit | d15b99ac5af661dba1303f17a01f09aae7b6f5e7 (patch) | |
tree | e91cee50ed642f2edd9309140d5751c62a5b47f9 /io/Makefile | |
parent | 030219826e29a214dc1b58d31fd924fb32ec761f (diff) | |
download | glibc-d15b99ac5af661dba1303f17a01f09aae7b6f5e7.tar glibc-d15b99ac5af661dba1303f17a01f09aae7b6f5e7.tar.gz glibc-d15b99ac5af661dba1303f17a01f09aae7b6f5e7.tar.bz2 glibc-d15b99ac5af661dba1303f17a01f09aae7b6f5e7.zip |
* io/fcntl.h [__USE_ATFILE] (AT_EACCESS): New macro.
* posix/unistd.h [__USE_ATFILE]: Declare faccessat.
* io/faccessat.c: New file.
* sysdeps/unix/sysv/linux/faccessat.c: New file.
* io/Makefile (routines): Add faccessat.
* io/Versions (libc: GLIBC_2.4): Likewise.
* io/tst-faccessat.c: New file.
* io/Makefile (tests): Add it.
* io/sys/stat.h: Likewise.
Diffstat (limited to 'io/Makefile')
-rw-r--r-- | io/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/io/Makefile b/io/Makefile index b263a48705..5e6d72eace 100644 --- a/io/Makefile +++ b/io/Makefile @@ -35,10 +35,10 @@ routines := \ fxstatat fxstatat64 \ statfs fstatfs statfs64 fstatfs64 \ statvfs fstatvfs statvfs64 fstatvfs64 \ - umask chmod fchmod lchmod fchmodat \ + umask chmod fchmod lchmod fchmodat \ mkdir mkdirat \ open open64 openat openat64 close \ - read write lseek lseek64 access euidaccess \ + read write lseek lseek64 access euidaccess faccessat \ fcntl flock lockf lockf64 \ dup dup2 pipe \ creat creat64 \ @@ -64,7 +64,7 @@ test-srcs := ftwtest tests := test-utime test-stat test-stat2 test-lfs tst-getcwd \ tst-fcntl bug-ftw1 bug-ftw2 bug-ftw3 bug-ftw4 tst-statvfs \ tst-openat tst-unlinkat tst-fstatat tst-futimesat \ - tst-renameat tst-fchownat tst-fchmodat + tst-renameat tst-fchownat tst-fchmodat tst-faccessat distribute := ftwtest-sh |