Function declaration cleanup
authorAdhemerval Zanella <azanella@linux.vnet.ibm.com>
Tue, 6 Jan 2015 16:22:41 +0000 (08:22 -0800)
committerH.J. Lu <hjl.tools@gmail.com>
Tue, 6 Jan 2015 16:23:58 +0000 (08:23 -0800)
This patch changes the some function declaration from K&R style to
default ANSI C.

* nptl/pthread_cancel.c (pthread_cancel): Use ANSI prototype.
* nptl/pthread_cond_timedwait.c (__pthread_cond_timedwait): Likewise.
* nptl/pthread_cond_wait.c (__pthread_cond_wait): Likewise.
* nptl/pthread_exit.c (__pthread_exit): Likewise.
* nptl/pthread_join.c (pthread_join): Likewise.
* nptl/pthread_timedjoin.c (pthread_timedjoin_np): Likewise.
* sysdeps/posix/waitid.c (__waitid): Likewise.
* sysdeps/unix/sysv/linux/arm/pread.c (__libc_pread): Likewise.
* sysdeps/unix/sysv/linux/arm/pread64.c (__libc_pread64): Likewise.
* sysdeps/unix/sysv/linux/arm/pwrite.c (__libc_pwrite): Likewise.
* sysdeps/unix/sysv/linux/arm/pwrite64.c (__libc_pwrite64): Likewise.
* sysdeps/unix/sysv/linux/generic/wordsize-32/pread.c (__libc_pread):
Likewise.
* sysdeps/unix/sysv/linux/generic/wordsize-32/pread64.c
(__libc_pread64): Likewise.
* sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite.c
(__libc_pwrite): Likewise.
* sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite64.c
(__libc_pwrite64): Likewsie.
* sysdeps/unix/sysv/linux/mips/pread.c (__libc_pread): Likewise.
* sysdeps/unix/sysv/linux/mips/pread64.c (__libc_pread64): Likewise.
* sysdeps/unix/sysv/linux/mips/pwrite.c (__libc_pwrite): Likewise.
* sysdeps/unix/sysv/linux/mips/pwrite64.c (__libc_pwrite64): Likewise.
* sysdeps/unix/sysv/linux/msgrcv.c (__libc_msgrcv): Likewise.
* sysdeps/unix/sysv/linux/msgsnd.c (__libc_msgsnd): Likewise.
* sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Likewise.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c (__libc_pread):
Likewise.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c
(__libc_pread64): Likewise.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c (__libc_pwrite):
Likewise.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c
(__libc_pwrite64): Likewise.
* sysdeps/unix/sysv/linux/pread.c (__libc_pread): Likewise.
* sysdeps/unix/sysv/linux/pread64.c (__libc_pread64): Likewise.
* sysdeps/unix/sysv/linux/preadv.c (PREADV): Likewise.
* sysdeps/unix/sysv/linux/pthread_kill.c (__pthread_kill): Likewise.
* sysdeps/unix/sysv/linux/pwrite.c (__libc_pwrite): Likewise.
* sysdeps/unix/sysv/linux/pwrite64.c (__libc_pwrite64): Likewise.
* sysdeps/unix/sysv/linux/pwritev.c (__libc_pwritev): Likewise.
* sysdeps/unix/sysv/linux/sh/pread.c (__libc_pread): Likewise.
* sysdeps/unix/sysv/linux/sh/pread64.c (__libc_pread64): Likewise.
* sysdeps/unix/sysv/linux/sh/pwrite.c (__libc_pwrite): Likewise.
* sysdeps/unix/sysv/linux/sh/pwrite64.c (__libc_write64): Likewise.
* sysdeps/unix/sysv/linux/sigsuspend.c (__sigsuspend): Likewise.
* sysdeps/unix/sysv/linux/sigtimedwait.c (__sigtimedwait): Likewise.
* sysdeps/unix/sysv/linux/sigwait.c (__sigwait): Likewise.
* sysdeps/unix/sysv/linux/sigwaitinfo.c (__sigwaitinfo): Likewise.
* sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c (__libc_msgrcv):
Likewise.

43 files changed:
ChangeLog
nptl/pthread_cancel.c
nptl/pthread_cond_timedwait.c
nptl/pthread_cond_wait.c
nptl/pthread_exit.c
nptl/pthread_join.c
nptl/pthread_timedjoin.c
sysdeps/posix/waitid.c
sysdeps/unix/sysv/linux/arm/pread.c
sysdeps/unix/sysv/linux/arm/pread64.c
sysdeps/unix/sysv/linux/arm/pwrite.c
sysdeps/unix/sysv/linux/arm/pwrite64.c
sysdeps/unix/sysv/linux/generic/wordsize-32/pread.c
sysdeps/unix/sysv/linux/generic/wordsize-32/pread64.c
sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite.c
sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite64.c
sysdeps/unix/sysv/linux/mips/pread.c
sysdeps/unix/sysv/linux/mips/pread64.c
sysdeps/unix/sysv/linux/mips/pwrite.c
sysdeps/unix/sysv/linux/mips/pwrite64.c
sysdeps/unix/sysv/linux/msgrcv.c
sysdeps/unix/sysv/linux/msgsnd.c
sysdeps/unix/sysv/linux/openat.c
sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c
sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c
sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c
sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c
sysdeps/unix/sysv/linux/pread.c
sysdeps/unix/sysv/linux/pread64.c
sysdeps/unix/sysv/linux/preadv.c
sysdeps/unix/sysv/linux/pthread_kill.c
sysdeps/unix/sysv/linux/pwrite.c
sysdeps/unix/sysv/linux/pwrite64.c
sysdeps/unix/sysv/linux/pwritev.c
sysdeps/unix/sysv/linux/sh/pread.c
sysdeps/unix/sysv/linux/sh/pread64.c
sysdeps/unix/sysv/linux/sh/pwrite.c
sysdeps/unix/sysv/linux/sh/pwrite64.c
sysdeps/unix/sysv/linux/sigsuspend.c
sysdeps/unix/sysv/linux/sigtimedwait.c
sysdeps/unix/sysv/linux/sigwait.c
sysdeps/unix/sysv/linux/sigwaitinfo.c
sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c

index 3e2e176ec74b0cb0bffc1a93b8750cd392253813..bcaf00799abd623878febaac13000ae44f982e0b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,57 @@
+2015-01-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
+
+       * nptl/pthread_cancel.c (pthread_cancel): Use ANSI prototype.
+       * nptl/pthread_cond_timedwait.c (__pthread_cond_timedwait): Likewise.
+       * nptl/pthread_cond_wait.c (__pthread_cond_wait): Likewise.
+       * nptl/pthread_exit.c (__pthread_exit): Likewise.
+       * nptl/pthread_join.c (pthread_join): Likewise.
+       * nptl/pthread_timedjoin.c (pthread_timedjoin_np): Likewise.
+       * sysdeps/posix/waitid.c (__waitid): Likewise.
+       * sysdeps/unix/sysv/linux/arm/pread.c (__libc_pread): Likewise.
+       * sysdeps/unix/sysv/linux/arm/pread64.c (__libc_pread64): Likewise.
+       * sysdeps/unix/sysv/linux/arm/pwrite.c (__libc_pwrite): Likewise.
+       * sysdeps/unix/sysv/linux/arm/pwrite64.c (__libc_pwrite64): Likewise.
+       * sysdeps/unix/sysv/linux/generic/wordsize-32/pread.c (__libc_pread):
+       Likewise.
+       * sysdeps/unix/sysv/linux/generic/wordsize-32/pread64.c
+       (__libc_pread64): Likewise.
+       * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite.c
+       (__libc_pwrite): Likewise.
+       * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite64.c
+       (__libc_pwrite64): Likewsie.
+       * sysdeps/unix/sysv/linux/mips/pread.c (__libc_pread): Likewise.
+       * sysdeps/unix/sysv/linux/mips/pread64.c (__libc_pread64): Likewise.
+       * sysdeps/unix/sysv/linux/mips/pwrite.c (__libc_pwrite): Likewise.
+       * sysdeps/unix/sysv/linux/mips/pwrite64.c (__libc_pwrite64): Likewise.
+       * sysdeps/unix/sysv/linux/msgrcv.c (__libc_msgrcv): Likewise.
+       * sysdeps/unix/sysv/linux/msgsnd.c (__libc_msgsnd): Likewise.
+       * sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Likewise.
+       * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c (__libc_pread):
+       Likewise.
+       * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c
+       (__libc_pread64): Likewise.
+       * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c (__libc_pwrite):
+       Likewise.
+       * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c
+       (__libc_pwrite64): Likewise.
+       * sysdeps/unix/sysv/linux/pread.c (__libc_pread): Likewise.
+       * sysdeps/unix/sysv/linux/pread64.c (__libc_pread64): Likewise.
+       * sysdeps/unix/sysv/linux/preadv.c (PREADV): Likewise.
+       * sysdeps/unix/sysv/linux/pthread_kill.c (__pthread_kill): Likewise.
+       * sysdeps/unix/sysv/linux/pwrite.c (__libc_pwrite): Likewise.
+       * sysdeps/unix/sysv/linux/pwrite64.c (__libc_pwrite64): Likewise.
+       * sysdeps/unix/sysv/linux/pwritev.c (__libc_pwritev): Likewise.
+       * sysdeps/unix/sysv/linux/sh/pread.c (__libc_pread): Likewise.
+       * sysdeps/unix/sysv/linux/sh/pread64.c (__libc_pread64): Likewise.
+       * sysdeps/unix/sysv/linux/sh/pwrite.c (__libc_pwrite): Likewise.
+       * sysdeps/unix/sysv/linux/sh/pwrite64.c (__libc_write64): Likewise.
+       * sysdeps/unix/sysv/linux/sigsuspend.c (__sigsuspend): Likewise.
+       * sysdeps/unix/sysv/linux/sigtimedwait.c (__sigtimedwait): Likewise.
+       * sysdeps/unix/sysv/linux/sigwait.c (__sigwait): Likewise.
+       * sysdeps/unix/sysv/linux/sigwaitinfo.c (__sigwaitinfo): Likewise.
+       * sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c (__libc_msgrcv):
+       Likewise.
+
 2015-01-06  Andrew Senkevich  <andrew.n.senkevich@gmail.com>
 
        * math/Makefile (CFLAGS-test-float.c): Remove -frounding-math.
index 0691eda706af919aca1ddaa444b18e51816c734c..981e4bc8f7c8d6722dc93548396fa676fff12fe5 100644 (file)
@@ -25,8 +25,7 @@
 
 
 int
-pthread_cancel (th)
-     pthread_t th;
+pthread_cancel (pthread_t th)
 {
   volatile struct pthread *pd = (volatile struct pthread *) th;
 
index 7c1d35d7b6d50d4c595dd766a2a0e84b4f7aed7e..bf804678456a9c0d5f772b5be207a3d67e20d9b9 100644 (file)
@@ -49,10 +49,8 @@ struct _condvar_cleanup_buffer
 };
 
 int
-__pthread_cond_timedwait (cond, mutex, abstime)
-     pthread_cond_t *cond;
-     pthread_mutex_t *mutex;
-     const struct timespec *abstime;
+__pthread_cond_timedwait (pthread_cond_t *cond, pthread_mutex_t *mutex,
+                         const struct timespec *abstime)
 {
   struct _pthread_cleanup_buffer buffer;
   struct _condvar_cleanup_buffer cbuffer;
index 63dcd5e7cef5d7afc1b4f1c3816bc2bc5d75f246..0d6558b642f02b8191c502ff067c6414f105cd74 100644 (file)
@@ -98,9 +98,7 @@ __condvar_cleanup (void *arg)
 
 
 int
-__pthread_cond_wait (cond, mutex)
-     pthread_cond_t *cond;
-     pthread_mutex_t *mutex;
+__pthread_cond_wait (pthread_cond_t *cond, pthread_mutex_t *mutex)
 {
   struct _pthread_cleanup_buffer buffer;
   struct _condvar_cleanup_buffer cbuffer;
index 83a9ff7ab00b8f4cb9835a27bcc8c0c5fa991fdd..a60adbdd384be8ed0faac74ef7e5e9d00856da5b 100644 (file)
@@ -21,8 +21,7 @@
 
 
 void
-__pthread_exit (value)
-     void *value;
+__pthread_exit (void *value)
 {
   THREAD_SETMEM (THREAD_SELF, result, value);
 
index fde1862ec8cca9a5a5200d4ac9e20bec5484181c..c841ff917b9e764d0710c899ca455498b5fc4d65 100644 (file)
@@ -37,9 +37,7 @@ cleanup (void *arg)
 
 
 int
-pthread_join (threadid, thread_return)
-     pthread_t threadid;
-     void **thread_return;
+pthread_join (pthread_t threadid, void **thread_return)
 {
   struct pthread *pd = (struct pthread *) threadid;
 
index 5cd516bf33f10d8e486c1ecd82da18103e1d36f5..10567e61ff31ababc1fa8143cd33a68015fef14f 100644 (file)
@@ -30,10 +30,8 @@ cleanup (void *arg)
 
 
 int
-pthread_timedjoin_np (threadid, thread_return, abstime)
-     pthread_t threadid;
-     void **thread_return;
-     const struct timespec *abstime;
+pthread_timedjoin_np (pthread_t threadid, void **thread_return,
+                     const struct timespec *abstime)
 {
   struct pthread *self;
   struct pthread *pd = (struct pthread *) threadid;
index 508c8c7061d9a7d21c659dc849a7185c69f662e8..de41227916994a38a9603368563d5332ec24983f 100644 (file)
@@ -149,11 +149,7 @@ OUR_WAITID (idtype_t idtype, id_t id, siginfo_t *infop, int options)
 
 
 int
-__waitid (idtype, id, infop, options)
-     idtype_t idtype;
-     id_t id;
-     siginfo_t *infop;
-     int options;
+__waitid (idtype_t idtype, id_t id, siginfo_t *infop, int options)
 {
   if (SINGLE_THREAD_P)
     return do_waitid (idtype, id, infop, options);
index 5ae8f45d056e62f9e9a7ba605f80cf7707ef2a74..64bc0a101500a6b6f9a5a80275927c9792999724 100644 (file)
 #include <sys/syscall.h>
 
 ssize_t
-__libc_pread (fd, buf, count, offset)
-     int fd;
-     void *buf;
-     size_t count;
-     off_t offset;
+__libc_pread (int fd, void *buf, size_t count, off_t offset)
 {
   ssize_t result;
 
index 8de750ab6d7137dddb1a4a85db2e4bdbffd05b59..78606997f9af9f6b23c41c8a5df631f4f29f7aad 100644 (file)
 #include <sys/syscall.h>
 
 ssize_t
-__libc_pread64 (fd, buf, count, offset)
-     int fd;
-     void *buf;
-     size_t count;
-     off64_t offset;
+__libc_pread64 (int fd, void *buf, size_t count, off64_t offset)
 {
   ssize_t result;
 
index b0b87559b741301886bb29cab895781a5f8ec407..11a963ca6cd940b1d1b4577ba83d3f763e8ae79e 100644 (file)
 #include <sys/syscall.h>
 
 ssize_t
-__libc_pwrite (fd, buf, count, offset)
-     int fd;
-     const void *buf;
-     size_t count;
-     off_t offset;
+__libc_pwrite (int fd, const void *buf, size_t count, off_t offset)
 {
   ssize_t result;
 
index ffa84dfcc0bc05be16da700f0cda29cc13d8b620..9cb67ff006f06fde37da4970d0946979807f7cdc 100644 (file)
 #include <sys/syscall.h>
 
 ssize_t
-__libc_pwrite64 (fd, buf, count, offset)
-     int fd;
-     const void *buf;
-     size_t count;
-     off64_t offset;
+__libc_pwrite64 (int fd, const void *buf, size_t count, off64_t offset)
 {
   ssize_t result;
 
index 3e8dbd69325b12787a7449729314404e40134335..ad97e97135021f8313be0da15f753c6c4042da35 100644 (file)
@@ -35,11 +35,7 @@ do_pread (int fd, void *buf, size_t count, off_t offset)
 }
 
 ssize_t
-__libc_pread (fd, buf, count, offset)
-     int fd;
-     void *buf;
-     size_t count;
-     off_t offset;
+__libc_pread (int fd, void *buf, size_t count, off_t offset)
 {
   if (SINGLE_THREAD_P)
     return do_pread (fd, buf, count, offset);
index 9241b3206f44b1b0e5be2e94b866c6e68192dc05..7250893297b81c63274a931668d3d47c3a924216 100644 (file)
@@ -35,11 +35,7 @@ do_pread64 (int fd, void *buf, size_t count, off64_t offset)
 
 
 ssize_t
-__libc_pread64 (fd, buf, count, offset)
-     int fd;
-     void *buf;
-     size_t count;
-     off64_t offset;
+__libc_pread64 (int fd, void *buf, size_t count, off64_t offset)
 {
   if (SINGLE_THREAD_P)
     return do_pread64 (fd, buf, count, offset);
index c4c7a76579b285711bdc080d6da728c5a3b37b25..e897c7d6ad1a94b8eb29b0729abf1abade0f4c5c 100644 (file)
@@ -36,11 +36,7 @@ do_pwrite (int fd, const void *buf, size_t count, off_t offset)
 
 
 ssize_t
-__libc_pwrite (fd, buf, count, offset)
-     int fd;
-     const void *buf;
-     size_t count;
-     off_t offset;
+__libc_pwrite (int fd, const void *buf, size_t count, off_t offset)
 {
   if (SINGLE_THREAD_P)
     return do_pwrite (fd, buf, count, offset);
index 8ffc6b55c2d100e40157d8306bd50816e7c94024..3ac1339b9a321d713673a5b64171b3532383a164 100644 (file)
@@ -35,11 +35,7 @@ do_pwrite64 (int fd, const void *buf, size_t count, off64_t offset)
 
 
 ssize_t
-__libc_pwrite64 (fd, buf, count, offset)
-     int fd;
-     const void *buf;
-     size_t count;
-     off64_t offset;
+__libc_pwrite64 (int fd, const void *buf, size_t count, off64_t offset)
 {
   if (SINGLE_THREAD_P)
     return do_pwrite64 (fd, buf, count, offset);
index 50247bef1dab1e5206bf8bfc469f4587946ded3c..c301067478c1bf57c034fc53e2bd99e110e1785c 100644 (file)
 
 
 ssize_t
-__libc_pread (fd, buf, count, offset)
-     int fd;
-     void *buf;
-     size_t count;
-     off_t offset;
+__libc_pread (int fd, void *buf, size_t count, off_t offset):
 {
   ssize_t result;
 
index 42e52da868e36f892f96421429b969bfa07dcff6..ad948aada7681bc5ab4cf308e61f04e6dc8ab32a 100644 (file)
 
 
 ssize_t
-__libc_pread64 (fd, buf, count, offset)
-     int fd;
-     void *buf;
-     size_t count;
-     off64_t offset;
+__libc_pread64 (int fd, void *buf, size_t count, off64_t offset)
 {
   ssize_t result;
 
index 4dd96904b157f4516462f720b95962a021b7d30b..2c38e0406017c96346c97856c102f5eefa6af876 100644 (file)
 
 
 ssize_t
-__libc_pwrite (fd, buf, count, offset)
-     int fd;
-     const void *buf;
-     size_t count;
-     off_t offset;
+__libc_pwrite (int fd, const void *buf, size_t count, off_t offset)
 {
   ssize_t result;
 
index 1c548b92c2580489621f2ef7d0c029ea3055ae5f..504c88aa105fa42a5cb0c32a64ba422b1159ba44 100644 (file)
 
 
 ssize_t
-__libc_pwrite64 (fd, buf, count, offset)
-     int fd;
-     const void *buf;
-     size_t count;
-     off64_t offset;
+__libc_pwrite64 (int fd, const void *buf, size_t count, off64_t offset)
 {
   ssize_t result;
 
index 8acaa8900e4ccb8ccdf42b248b34beda508720d2..1c3698c2f5668c55cb451135cd502c1d7c1d7d24 100644 (file)
@@ -33,12 +33,8 @@ struct ipc_kludge
 
 
 ssize_t
-__libc_msgrcv (msqid, msgp, msgsz, msgtyp, msgflg)
-     int msqid;
-     void *msgp;
-     size_t msgsz;
-     long int msgtyp;
-     int msgflg;
+__libc_msgrcv (int msqid, void *msgp, size_t msgsz, long int msgtyp,
+              int msgflg)
 {
   /* The problem here is that Linux' calling convention only allows up to
      fives parameters to a system call.  */
index 2c354d8481ae3472a593fb39ead011f63c408eb5..d548aab104775206ef0f715ec8411c72c9b3d784 100644 (file)
 #include <sys/syscall.h>
 
 int
-__libc_msgsnd (msqid, msgp, msgsz, msgflg)
-     int msqid;
-     const void *msgp;
-     size_t msgsz;
-     int msgflg;
+__libc_msgsnd (int msqid, const void *msgp, size_t msgsz, int msgflg)
 {
   if (SINGLE_THREAD_P)
     return INLINE_SYSCALL (ipc, 5, IPCOP_msgsnd, msqid, msgsz,
index 95c98086ccc71cf72ab5adfbea5ef7951318c8cc..5145823b8e58bba2b7ff5740b3f0809fdf6c80e9 100644 (file)
 
 
 int
-OPENAT_NOT_CANCEL (fd, file, oflag, mode)
-     int fd;
-     const char *file;
-     int oflag;
-     mode_t mode;
+OPENAT_NOT_CANCEL (int fd, const char *file, int oflag, mode_t mode)
 {
 
   /* We have to add the O_LARGEFILE flag for openat64.  */
@@ -61,10 +57,7 @@ OPENAT_NOT_CANCEL (fd, file, oflag, mode)
    the directory associated with FD.  If OFLAG includes O_CREAT, a
    third argument is the file protection.  */
 int
-__OPENAT (fd, file, oflag)
-     int fd;
-     const char *file;
-     int oflag;
+__OPENAT (int fd, const char *file, int oflag, ...)
 {
   mode_t mode = 0;
   if (oflag & O_CREAT)
index 6b7d71234b38eb3edf1cb743458c0d35a9536cb2..10763f563d116deb59380251725938510838e93a 100644 (file)
 #include <sys/syscall.h>
 
 ssize_t
-__libc_pread (fd, buf, count, offset)
-     int fd;
-     void *buf;
-     size_t count;
-     off_t offset;
+__libc_pread (int fd, void *buf, size_t count, off_t offset)
 {
   ssize_t result;
 
index 6229d4896453b58f861d7961a8cd7c8b147143cc..f3dc7e56189d67fb6f2d0bc7a1c48f8ae8d741b9 100644 (file)
 
 
 ssize_t
-__libc_pread64 (fd, buf, count, offset)
-     int fd;
-     void *buf;
-     size_t count;
-     off64_t offset;
+__libc_pread64 (int fd, void *buf, size_t count, off64_t offset)
 {
   ssize_t result;
 
index e70d507b1229efb374cd6a3ae7f45c51a82575fd..65109ed54cb73719be55b34d154c1c555b894ee7 100644 (file)
 
 
 ssize_t
-__libc_pwrite (fd, buf, count, offset)
-     int fd;
-     const void *buf;
-     size_t count;
-     off_t offset;
+__libc_pwrite (int fd, const void *buf, size_t count, off_t offset)
 {
   ssize_t result;
 
index 080645da5cbb563a4aec3558dc66b56e31e3eedf..77749c98b04297e42af2657efe757626463c60cc 100644 (file)
 
 
 ssize_t
-__libc_pwrite64 (fd, buf, count, offset)
-     int fd;
-     const void *buf;
-     size_t count;
-     off64_t offset;
+__libc_pwrite64 (int fd, const void *buf, size_t count, off64_t offset)
 {
   ssize_t result;
 
index 3c60bfb9545de07a4d247cc021370e5b61003ef5..5c1b1743820a4ed71b2e859467e993e7810a872a 100644 (file)
@@ -49,11 +49,7 @@ do_pread (int fd, void *buf, size_t count, off_t offset)
 
 
 ssize_t
-__libc_pread (fd, buf, count, offset)
-     int fd;
-     void *buf;
-     size_t count;
-     off_t offset;
+__libc_pread (int fd, void *buf, size_t count, off_t offset)
 {
   if (SINGLE_THREAD_P)
     return do_pread (fd, buf, count, offset);
index 137b402d0ba77073efa14fd9aac3b174174ec607..a8cfb5ddf9daea81d1163341cb6e4bbe085703b5 100644 (file)
@@ -45,11 +45,7 @@ do_pread64 (int fd, void *buf, size_t count, off64_t offset)
 
 
 ssize_t
-__libc_pread64 (fd, buf, count, offset)
-     int fd;
-     void *buf;
-     size_t count;
-     off64_t offset;
+__libc_pread64 (int fd, void *buf, size_t count, off64_t offset)
 {
   if (SINGLE_THREAD_P)
     return do_pread64 (fd, buf, count, offset);
index c9b7df903347ea15a4a4daa0cc2558d7e26d8f8c..091f9a7dc99cceeb895103eb6604619def9b65ff 100644 (file)
@@ -48,11 +48,7 @@ static ssize_t PREADV_REPLACEMENT (int, const struct iovec *,
 
 
 ssize_t
-PREADV (fd, vector, count, offset)
-     int fd;
-     const struct iovec *vector;
-     int count;
-     OFF_T offset;
+PREADV (int fd, const struct iovec *vector, int count, OFF_T offset)
 {
 #ifdef __NR_preadv
   ssize_t result;
index 7951fa7f080ec533e18b89464721c7910694d3ca..8e8996aebe4345ad6d2df6445f08ab171b93057e 100644 (file)
@@ -24,9 +24,7 @@
 
 
 int
-__pthread_kill (threadid, signo)
-     pthread_t threadid;
-     int signo;
+__pthread_kill (pthread_t threadid, int signo)
 {
   struct pthread *pd = (struct pthread *) threadid;
 
index 678aeb9fb7f7a60cf4e4582329d23f41d2f4768c..80c2e22ebf4d441ea583ff535118b098f5b4bc21 100644 (file)
@@ -49,11 +49,7 @@ do_pwrite (int fd, const void *buf, size_t count, off_t offset)
 
 
 ssize_t
-__libc_pwrite (fd, buf, count, offset)
-     int fd;
-     const void *buf;
-     size_t count;
-     off_t offset;
+__libc_pwrite (int fd, const void *buf, size_t count, off_t offset)
 {
   if (SINGLE_THREAD_P)
     return do_pwrite (fd, buf, count, offset);
index 2c133ab9202dbf0c557448174c104c4cf9224ff5..7fce75a4328661a5acebd83f0f2785783378d157 100644 (file)
@@ -45,11 +45,7 @@ do_pwrite64 (int fd, const void *buf, size_t count, off64_t offset)
 
 
 ssize_t
-__libc_pwrite64 (fd, buf, count, offset)
-     int fd;
-     const void *buf;
-     size_t count;
-     off64_t offset;
+__libc_pwrite64 (int fd, const void *buf, size_t count, off64_t offset)
 {
   if (SINGLE_THREAD_P)
     return do_pwrite64 (fd, buf, count, offset);
index 847a0ed6dd05d80bc91fb704dddd5d3583b237f0..91e58b54ba74d7869f2a5759594cb31ba52d40dd 100644 (file)
@@ -48,11 +48,7 @@ static ssize_t PWRITEV_REPLACEMENT (int, const struct iovec *,
 
 
 ssize_t
-PWRITEV (fd, vector, count, offset)
-     int fd;
-     const struct iovec *vector;
-     int count;
-     OFF_T offset;
+PWRITEV (int fd, const struct iovec *vector, int count, OFF_T offset)
 {
 #ifdef __NR_pwritev
   ssize_t result;
index 913521206a6dd8b7e7bc23a61193c5500a104ac3..9d4b5de7515ea8f25f2c63cf37f884f7f85b6b1c 100644 (file)
 
 
 ssize_t
-__libc_pread (fd, buf, count, offset)
-     int fd;
-     void *buf;
-     size_t count;
-     off_t offset;
+__libc_pread (int fd, void *buf, size_t count, off_t offset)
 {
   ssize_t result;
 
index 185b51467b75f9ad916694c5be94939a540c128b..195eacc29a0f5cf0fcd43cfa1e91dfe353daf7f2 100644 (file)
 
 
 ssize_t
-__libc_pread64 (fd, buf, count, offset)
-     int fd;
-     void *buf;
-     size_t count;
-     off64_t offset;
+__libc_pread64 (int fd, void *buf, size_t count, off64_t offset)
 {
   ssize_t result;
 
index bc22ee166c7859985491b78c98761d66a394018f..c187d0a732af69745db81ff3ff70bac45f9c44ea 100644 (file)
 
 
 ssize_t
-__libc_pwrite (fd, buf, count, offset)
-     int fd;
-     const void *buf;
-     size_t count;
-     off_t offset;
+__libc_pwrite (int fd, const void *buf, size_t count, off_t offset)
 {
   ssize_t result;
 
index 7d04f22261e2703b34be3b6e3f6394f5673c83be..0d15ca21e8b8f620ebf3cad20f8feeab4883cdf2 100644 (file)
 
 
 ssize_t
-__libc_pwrite64 (fd, buf, count, offset)
-     int fd;
-     const void *buf;
-     size_t count;
-     off64_t offset;
+__libc_pwrite64 (int fd, const void *buf, size_t count, off64_t offset)
 {
   ssize_t result;
 
index c44455bbff910168fb69847fc60859b54c62dbc7..89c5d65d2262ea0ed1c0e54643d8c6d174e389e9 100644 (file)
@@ -32,8 +32,7 @@ do_sigsuspend (const sigset_t *set)
 /* 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)
 {
   if (SINGLE_THREAD_P)
     return do_sigsuspend (set);
index 9b2d934398b9d577478f11151dd914d4d1594d66..209198ea1468e2e7544b10ebb690d25fd8f30411 100644 (file)
@@ -67,10 +67,8 @@ do_sigtimedwait (const sigset_t *set, siginfo_t *info,
 
 /* Return any pending signal or wait for one for the given time.  */
 int
-__sigtimedwait (set, info, timeout)
-     const sigset_t *set;
-     siginfo_t *info;
-     const struct timespec *timeout;
+__sigtimedwait (const sigset_t *set, siginfo_t *info,
+               const struct timespec *timeout)
 {
   if (SINGLE_THREAD_P)
     return do_sigtimedwait (set, info, timeout);
index c21550b1527468538f3f86b22a9359bb3ecb8a48..26c32414df99b0d94a073d2cd0f7d1e65c336275 100644 (file)
@@ -86,9 +86,7 @@ do_sigwait (const sigset_t *set, int *sig)
 }
 
 int
-__sigwait (set, sig)
-     const sigset_t *set;
-     int *sig;
+__sigwait (const sigset_t *set, int *sig)
 {
   if (SINGLE_THREAD_P)
     return do_sigwait (set, sig);
index 9d6c2155be47d9475f102c67fba4a83556cc311d..fe23c9fe064ca41a6b1caa32c4601dabe2a61451 100644 (file)
@@ -68,9 +68,7 @@ do_sigwaitinfo (const sigset_t *set, siginfo_t *info)
 
 /* Return any pending signal or wait for one for the given time.  */
 int
-__sigwaitinfo (set, info)
-     const sigset_t *set;
-     siginfo_t *info;
+__sigwaitinfo (const sigset_t *set, siginfo_t *info)
 {
   if (SINGLE_THREAD_P)
     return do_sigwaitinfo (set, info);
index 1f256f553a4637ce43e1fbd2b65ae24e8d1b0051..892806046fbbedbc96facb776b06fc8b86ff7e8b 100644 (file)
 #include <sys/syscall.h>
 
 ssize_t
-__libc_msgrcv (msqid, msgp, msgsz, msgtyp, msgflg)
-     int msqid;
-     void *msgp;
-     size_t msgsz;
-     long int msgtyp;
-     int msgflg;
+__libc_msgrcv (int msqid, void *msgp, size_t msgsz, long int msgtyp,
+              int msgflg)
 {
   if (SINGLE_THREAD_P)
     return INLINE_SYSCALL (ipc, 6, IPCOP_msgrcv, msqid, msgsz, msgflg,