diff options
Diffstat (limited to 'dirent')
-rw-r--r-- | dirent/dirfd.c | 3 | ||||
-rw-r--r-- | dirent/getdents.c | 6 | ||||
-rw-r--r-- | dirent/getdents64.c | 6 | ||||
-rw-r--r-- | dirent/rewinddir.c | 3 | ||||
-rw-r--r-- | dirent/seekdir.c | 4 | ||||
-rw-r--r-- | dirent/telldir.c | 3 |
6 files changed, 6 insertions, 19 deletions
diff --git a/dirent/dirfd.c b/dirent/dirfd.c index 516f886be8..0dd5115923 100644 --- a/dirent/dirfd.c +++ b/dirent/dirfd.c @@ -21,8 +21,7 @@ #include <errno.h> int -dirfd (dirp) - DIR *dirp; +dirfd (DIR *dirp) { __set_errno (ENOSYS); return -1; diff --git a/dirent/getdents.c b/dirent/getdents.c index 0766265f4e..836af147e7 100644 --- a/dirent/getdents.c +++ b/dirent/getdents.c @@ -21,11 +21,7 @@ #include <dirent.h> ssize_t -__getdirentries (fd, buf, nbytes, basep) - int fd; - char *buf; - size_t nbytes; - off_t *basep; +__getdirentries (int fd, char *buf, size_t nbytes, off_t *basep) { __set_errno (ENOSYS); return -1; diff --git a/dirent/getdents64.c b/dirent/getdents64.c index 1d317cc5ac..a9d4663e06 100644 --- a/dirent/getdents64.c +++ b/dirent/getdents64.c @@ -21,11 +21,7 @@ #include <dirent.h> ssize_t -getdirentries64 (fd, buf, nbytes, basep) - int fd; - char *buf; - size_t nbytes; - off64_t *basep; +getdirentries64 (int fd, char *buf, size_t nbytes, off64_t *basep) { __set_errno (ENOSYS); return -1; diff --git a/dirent/rewinddir.c b/dirent/rewinddir.c index e7a345a468..75ea2663ab 100644 --- a/dirent/rewinddir.c +++ b/dirent/rewinddir.c @@ -22,8 +22,7 @@ /* Rewind DIRP to the beginning of the directory. */ void -__rewinddir (dirp) - DIR *dirp; +__rewinddir (DIR *dirp) { __set_errno (ENOSYS); /* No way to indicate failure. */ diff --git a/dirent/seekdir.c b/dirent/seekdir.c index e4a725b149..eb2993c095 100644 --- a/dirent/seekdir.c +++ b/dirent/seekdir.c @@ -22,9 +22,7 @@ /* Seek to position POS in DIRP. */ void -seekdir (dirp, pos) - DIR *dirp; - long int pos; +seekdir (DIR *dirp, long int pos) { if (dirp == NULL) { diff --git a/dirent/telldir.c b/dirent/telldir.c index fdb56cffeb..504404d4f1 100644 --- a/dirent/telldir.c +++ b/dirent/telldir.c @@ -22,8 +22,7 @@ /* Return the current position of DIRP. */ long int -telldir (dirp) - DIR *dirp; +telldir (DIR *dirp) { if (dirp == NULL) { |