diff options
Diffstat (limited to 'sysdeps/posix')
32 files changed, 34 insertions, 92 deletions
diff --git a/sysdeps/posix/alarm.c b/sysdeps/posix/alarm.c index 002366462c..f7d97f1f33 100644 --- a/sysdeps/posix/alarm.c +++ b/sysdeps/posix/alarm.c @@ -26,8 +26,7 @@ to 0 and check its value after calling `alarm', and this might tell you. The signal may come late due to processor scheduling. */ unsigned int -alarm (seconds) - unsigned int seconds; +alarm (unsigned int seconds) { struct itimerval old, new; unsigned int retval; diff --git a/sysdeps/posix/cuserid.c b/sysdeps/posix/cuserid.c index acdd20cd5e..d89e34edd0 100644 --- a/sysdeps/posix/cuserid.c +++ b/sysdeps/posix/cuserid.c @@ -25,8 +25,7 @@ If S is not NULL, it points to a buffer of at least L_cuserid bytes into which the name is copied; otherwise, a static buffer is used. */ char * -cuserid (s) - char *s; +cuserid (char *s) { static char name[L_cuserid]; char buf[NSS_BUFLEN_PASSWD]; diff --git a/sysdeps/posix/dirfd.c b/sysdeps/posix/dirfd.c index 1630f8987b..e56a589438 100644 --- a/sysdeps/posix/dirfd.c +++ b/sysdeps/posix/dirfd.c @@ -22,8 +22,7 @@ #undef dirfd int -dirfd (dirp) - DIR *dirp; +dirfd (DIR *dirp) { return dirp->fd; } diff --git a/sysdeps/posix/dup.c b/sysdeps/posix/dup.c index 02d7097b4c..27eff451bd 100644 --- a/sysdeps/posix/dup.c +++ b/sysdeps/posix/dup.c @@ -22,8 +22,7 @@ /* Duplicate FD, returning a new file descriptor open on the same file. */ int -__dup (fd) - int fd; +__dup (int fd) { return fcntl (fd, F_DUPFD, 0); } diff --git a/sysdeps/posix/dup2.c b/sysdeps/posix/dup2.c index ab983bcf74..f61eba5b5b 100644 --- a/sysdeps/posix/dup2.c +++ b/sysdeps/posix/dup2.c @@ -23,9 +23,7 @@ /* Duplicate FD to FD2, closing the old FD2 and making FD2 be open the same file as FD is. Return FD2 or -1. */ int -__dup2 (fd, fd2) - int fd; - int fd2; +__dup2 (int fd, int fd2) { int save; diff --git a/sysdeps/posix/euidaccess.c b/sysdeps/posix/euidaccess.c index 15340572c3..3dbdc43047 100644 --- a/sysdeps/posix/euidaccess.c +++ b/sysdeps/posix/euidaccess.c @@ -117,9 +117,7 @@ int group_member (); filesystem, text busy, etc. */ int -euidaccess (path, mode) - const char *path; - int mode; +euidaccess (const char *path, int mode) { struct stat64 stats; int granted; @@ -196,9 +194,7 @@ weak_alias (__euidaccess, eaccess) char *program_name; int -main (argc, argv) - int argc; - char **argv; +main (int argc, char **argv) { char *file; int mode; diff --git a/sysdeps/posix/flock.c b/sysdeps/posix/flock.c index ba7078bdbc..fdac6a758c 100644 --- a/sysdeps/posix/flock.c +++ b/sysdeps/posix/flock.c @@ -27,9 +27,7 @@ /* Apply or remove an advisory lock, according to OPERATION, on the file FD refers to. */ int -__flock (fd, operation) - int fd; - int operation; +__flock (int fd, int operation) { struct flock lbuf; diff --git a/sysdeps/posix/fpathconf.c b/sysdeps/posix/fpathconf.c index 088eb150ff..17ed92449e 100644 --- a/sysdeps/posix/fpathconf.c +++ b/sysdeps/posix/fpathconf.c @@ -26,9 +26,7 @@ /* Get file-specific information about descriptor FD. */ long int -__fpathconf (fd, name) - int fd; - int name; +__fpathconf (int fd, int name) { if (fd < 0) { diff --git a/sysdeps/posix/getcwd.c b/sysdeps/posix/getcwd.c index afe696767a..ccb8e99c94 100644 --- a/sysdeps/posix/getcwd.c +++ b/sysdeps/posix/getcwd.c @@ -222,9 +222,7 @@ static int __rtld_have_atfcts; unless SIZE == 0, in which case it is as big as necessary. */ GETCWD_RETURN_TYPE -__getcwd (buf, size) - char *buf; - size_t size; +__getcwd (char *buf, size_t size) { #ifndef __ASSUME_ATFCTS static const char dots[] diff --git a/sysdeps/posix/gethostname.c b/sysdeps/posix/gethostname.c index 49177059c6..61e75e8b80 100644 --- a/sysdeps/posix/gethostname.c +++ b/sysdeps/posix/gethostname.c @@ -24,9 +24,7 @@ The result is null-terminated if LEN is large enough for the full name and the terminator. */ int -__gethostname (name, len) - char *name; - size_t len; +__gethostname (char *name, size_t len) { struct utsname buf; size_t node_len; diff --git a/sysdeps/posix/gettimeofday.c b/sysdeps/posix/gettimeofday.c index 018acdfd0a..08710237fd 100644 --- a/sysdeps/posix/gettimeofday.c +++ b/sysdeps/posix/gettimeofday.c @@ -23,9 +23,7 @@ putting it into *TV and *TZ. If TZ is NULL, *TZ is not filled. Returns 0 on success, -1 on errors. */ int -__gettimeofday (tv, tz) - struct timeval *tv; - struct timezone *tz; +__gettimeofday (struct timeval *tv, struct timezone *tz) { if (tv == NULL) { diff --git a/sysdeps/posix/isatty.c b/sysdeps/posix/isatty.c index 807631a484..10f19e4cb4 100644 --- a/sysdeps/posix/isatty.c +++ b/sysdeps/posix/isatty.c @@ -20,8 +20,7 @@ /* Return 1 if FD is a terminal, 0 if not. */ int -__isatty (fd) - int fd; +__isatty (int fd) { struct termios term; diff --git a/sysdeps/posix/killpg.c b/sysdeps/posix/killpg.c index 77ffc7c1d8..8e3a3f055d 100644 --- a/sysdeps/posix/killpg.c +++ b/sysdeps/posix/killpg.c @@ -23,9 +23,7 @@ If PGRP is zero, send SIG to all processes in the current process's process group. */ int -killpg (pgrp, sig) - __pid_t pgrp; - int sig; +killpg (__pid_t pgrp, int sig) { if (pgrp < 0) { diff --git a/sysdeps/posix/libc_fatal.c b/sysdeps/posix/libc_fatal.c index 2d99c46cf8..6dc16c7cfc 100644 --- a/sysdeps/posix/libc_fatal.c +++ b/sysdeps/posix/libc_fatal.c @@ -178,8 +178,7 @@ __libc_message (int do_abort, const char *fmt, ...) void -__libc_fatal (message) - const char *message; +__libc_fatal (const char *message) { /* The loop is added only to keep gcc happy. */ while (1) diff --git a/sysdeps/posix/mkfifoat.c b/sysdeps/posix/mkfifoat.c index c7770eb60d..c929b1bc55 100644 --- a/sysdeps/posix/mkfifoat.c +++ b/sysdeps/posix/mkfifoat.c @@ -21,10 +21,7 @@ /* Create a new FIFO with permission bits MODE. But interpret relative PATH names relative to the directory associated with FD. */ int -mkfifoat (fd, file, mode) - int fd; - const char *file; - mode_t mode; +mkfifoat (int fd, const char *file, mode_t mode) { dev_t dev = 0; return __xmknodat (_MKNOD_VER, fd, file, mode | S_IFIFO, &dev); diff --git a/sysdeps/posix/raise.c b/sysdeps/posix/raise.c index 008f87b556..54d79dca7f 100644 --- a/sysdeps/posix/raise.c +++ b/sysdeps/posix/raise.c @@ -20,8 +20,7 @@ /* Raise the signal SIG. */ int -raise (sig) - int sig; +raise (int sig) { return __kill (__getpid (), sig); } diff --git a/sysdeps/posix/remove.c b/sysdeps/posix/remove.c index 4ae3cfb4ba..6e0d9d855f 100644 --- a/sysdeps/posix/remove.c +++ b/sysdeps/posix/remove.c @@ -27,8 +27,7 @@ int -remove (file) - const char *file; +remove (const char *file) { /* First try to unlink since this is more frequently the necessary action. */ if (__unlink (file) != 0 diff --git a/sysdeps/posix/rename.c b/sysdeps/posix/rename.c index 0f13abbf5d..8eda76513c 100644 --- a/sysdeps/posix/rename.c +++ b/sysdeps/posix/rename.c @@ -21,9 +21,7 @@ /* Rename the file OLD to NEW. */ int -rename (old, new) - const char *old; - const char *new; +rename (const char *old, const char *new) { int save = errno; if (__link (old, new) < 0) diff --git a/sysdeps/posix/rewinddir.c b/sysdeps/posix/rewinddir.c index 5ac4897f7d..c7c127a1b5 100644 --- a/sysdeps/posix/rewinddir.c +++ b/sysdeps/posix/rewinddir.c @@ -23,8 +23,7 @@ /* Rewind DIRP to the beginning of the directory. */ void -__rewinddir (dirp) - DIR *dirp; +__rewinddir (DIR *dirp) { #if IS_IN (libc) __libc_lock_lock (dirp->lock); diff --git a/sysdeps/posix/seekdir.c b/sysdeps/posix/seekdir.c index f15a57cf70..7119fe7258 100644 --- a/sysdeps/posix/seekdir.c +++ b/sysdeps/posix/seekdir.c @@ -24,9 +24,7 @@ /* Seek to position POS in DIRP. */ /* XXX should be __seekdir ? */ void -seekdir (dirp, pos) - DIR *dirp; - long int pos; +seekdir (DIR *dirp, long int pos) { __libc_lock_lock (dirp->lock); (void) __lseek (dirp->fd, pos, SEEK_SET); diff --git a/sysdeps/posix/sigblock.c b/sysdeps/posix/sigblock.c index 3392fbf3ea..0236e97a15 100644 --- a/sysdeps/posix/sigblock.c +++ b/sysdeps/posix/sigblock.c @@ -22,8 +22,7 @@ /* Block signals in MASK, returning the old mask. */ int -__sigblock (mask) - int mask; +__sigblock (int mask) { sigset_t set, oset; diff --git a/sysdeps/posix/sigignore.c b/sysdeps/posix/sigignore.c index 0c8c10dbc5..6cf3233ad7 100644 --- a/sysdeps/posix/sigignore.c +++ b/sysdeps/posix/sigignore.c @@ -25,8 +25,7 @@ int -sigignore (sig) - int sig; +sigignore (int sig) { struct sigaction act; diff --git a/sysdeps/posix/sigintr.c b/sysdeps/posix/sigintr.c index 28c9052d47..c6681d5676 100644 --- a/sysdeps/posix/sigintr.c +++ b/sysdeps/posix/sigintr.c @@ -23,9 +23,7 @@ (causing them to fail with EINTR); if INTERRUPT is zero, make system calls be restarted after signal SIG. */ int -siginterrupt (sig, interrupt) - int sig; - int interrupt; +siginterrupt (int sig, int interrupt) { #ifdef SA_RESTART extern sigset_t _sigintr attribute_hidden; /* Defined in signal.c. */ diff --git a/sysdeps/posix/signal.c b/sysdeps/posix/signal.c index 0c588238f3..d85c08aa22 100644 --- a/sysdeps/posix/signal.c +++ b/sysdeps/posix/signal.c @@ -26,9 +26,7 @@ sigset_t _sigintr attribute_hidden; /* Set by siginterrupt. */ /* Set the handler for the signal SIG to HANDLER, returning the old handler, or SIG_ERR on error. */ __sighandler_t -__bsd_signal (sig, handler) - int sig; - __sighandler_t handler; +__bsd_signal (int sig, __sighandler_t handler) { struct sigaction act, oact; diff --git a/sysdeps/posix/sigset.c b/sysdeps/posix/sigset.c index 35c9fcd607..e6cd1a8ea0 100644 --- a/sysdeps/posix/sigset.c +++ b/sysdeps/posix/sigset.c @@ -24,9 +24,7 @@ /* Set the disposition for SIG. */ __sighandler_t -sigset (sig, disp) - int sig; - __sighandler_t disp; +sigset (int sig, __sighandler_t disp) { struct sigaction act; struct sigaction oact; diff --git a/sysdeps/posix/sigsuspend.c b/sysdeps/posix/sigsuspend.c index 1ac689f6fb..2ef9506188 100644 --- a/sysdeps/posix/sigsuspend.c +++ b/sysdeps/posix/sigsuspend.c @@ -24,8 +24,7 @@ /* Change the set of blocked signals to SET, wait until a signal arrives, and restore the set of blocked signals. */ int -__sigsuspend (set) - const sigset_t *set; +__sigsuspend (const sigset_t *set) { sigset_t oset; int save; diff --git a/sysdeps/posix/sysconf.c b/sysdeps/posix/sysconf.c index 502fe94909..c4832f4424 100644 --- a/sysdeps/posix/sysconf.c +++ b/sysdeps/posix/sysconf.c @@ -48,8 +48,7 @@ static long int __sysconf_check_spec (const char *spec); /* Get the value of the system variable NAME. */ long int -__sysconf (name) - int name; +__sysconf (int name) { switch (name) { diff --git a/sysdeps/posix/sysv_signal.c b/sysdeps/posix/sysv_signal.c index 434a3e3176..6365bbbb0c 100644 --- a/sysdeps/posix/sysv_signal.c +++ b/sysdeps/posix/sysv_signal.c @@ -34,9 +34,7 @@ /* Set the handler for the signal SIG to HANDLER, returning the old handler, or SIG_ERR on error. */ __sighandler_t -__sysv_signal (sig, handler) - int sig; - __sighandler_t handler; +__sysv_signal (int sig, __sighandler_t handler) { struct sigaction act, oact; diff --git a/sysdeps/posix/time.c b/sysdeps/posix/time.c index 52bc14acaf..11f224419e 100644 --- a/sysdeps/posix/time.c +++ b/sysdeps/posix/time.c @@ -23,8 +23,7 @@ /* Return the current time as a `time_t' and also put it in *T if T is not NULL. Time is represented as seconds from Jan 1 00:00:00 1970. */ time_t -time (t) - time_t *t; +time (time_t *t) { struct timeval tv; time_t result; diff --git a/sysdeps/posix/ttyname.c b/sysdeps/posix/ttyname.c index e2f17ac394..60851c2035 100644 --- a/sysdeps/posix/ttyname.c +++ b/sysdeps/posix/ttyname.c @@ -35,12 +35,7 @@ libc_freeres_ptr (static char *getttyname_name); static char * internal_function -getttyname (fd, mydev, myino, save, dostat) - int fd; - dev_t mydev; - ino_t myino; - int save; - int *dostat; +getttyname (int fd, dev_t mydev, ino_t myino, int save, int *dostat) { static const char dev[] = "/dev"; static size_t namelen; @@ -101,8 +96,7 @@ getttyname (fd, mydev, myino, save, dostat) /* Return the pathname of the terminal FD is open on, or NULL on errors. The returned storage is good only until the next call to this function. */ char * -ttyname (fd) - int fd; +ttyname (int fd) { struct stat st; int dostat = 0; diff --git a/sysdeps/posix/ttyname_r.c b/sysdeps/posix/ttyname_r.c index 483b78516e..7fa85334cf 100644 --- a/sysdeps/posix/ttyname_r.c +++ b/sysdeps/posix/ttyname_r.c @@ -101,10 +101,7 @@ getttyname_r (fd, buf, buflen, mydev, myino, save, dostat) /* Store at most BUFLEN character of the pathname of the terminal FD is open on in BUF. Return 0 on success, otherwise an error number. */ int -__ttyname_r (fd, buf, buflen) - int fd; - char *buf; - size_t buflen; +__ttyname_r (int fd, char *buf, size_t buflen) { struct stat st; int dostat = 0; diff --git a/sysdeps/posix/utime.c b/sysdeps/posix/utime.c index d618bf2814..08dcc0468c 100644 --- a/sysdeps/posix/utime.c +++ b/sysdeps/posix/utime.c @@ -26,9 +26,7 @@ /* Set the access and modification times of FILE to those given in TIMES. If TIMES is NULL, set them to the current time. */ int -utime (file, times) - const char *file; - const struct utimbuf *times; +utime (const char *file, const struct utimbuf *times) { struct timeval timevals[2]; struct timeval *tvp; |