diff options
Diffstat (limited to 'io/faccessat.c')
-rw-r--r-- | io/faccessat.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/io/faccessat.c b/io/faccessat.c index 3bf8b79035..8aa13f15b2 100644 --- a/io/faccessat.c +++ b/io/faccessat.c @@ -23,11 +23,7 @@ #include <sys/types.h> int -faccessat (fd, file, type, flag) - int fd; - const char *file; - int type; - int flag; +faccessat (int fd, const char *file, int type, int flag) { if (file == NULL || (flag & ~(AT_SYMLINK_NOFOLLOW | AT_EACCESS)) != 0 || (type & ~(R_OK|W_OK|X_OK|F_OK)) != 0) |