diff options
author | Joseph Myers <joseph@codesourcery.com> | 2015-10-20 11:51:03 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2015-10-20 11:51:03 +0000 |
commit | a72ddc1424d5bfcab14d90f1149cbb9b492f0120 (patch) | |
tree | 7a243cc0990d74957ff911afffcd3580b6d138b4 /misc | |
parent | 864198ed3011a446f42fc9dcb6d39617ce2477ea (diff) | |
download | glibc-a72ddc1424d5bfcab14d90f1149cbb9b492f0120.tar glibc-a72ddc1424d5bfcab14d90f1149cbb9b492f0120.tar.gz glibc-a72ddc1424d5bfcab14d90f1149cbb9b492f0120.tar.bz2 glibc-a72ddc1424d5bfcab14d90f1149cbb9b492f0120.zip |
Convert 24 more function definitions to prototype style (array parameters).
This automatically-generated patch converts 24 function definitions in
glibc from old-style K&R to prototype-style. Following my other
recent such patches, this one deals with the case of functions with
array parameters.
Tested for x86_64 and x86 (testsuite, and that installed stripped
shared libraries are unchanged by the patch).
* crypt/cert.c (main): Convert to prototype-style function
definition.
* io/pipe.c (__pipe): Likewise.
* io/pipe2.c (__pipe2): Likewise.
* misc/futimesat.c (futimesat): Likewise.
* misc/utimes.c (__utimes): Likewise.
* posix/execve.c (__execve): Likewise.
* posix/execvp.c (execvp): Likewise.
* posix/execvpe.c (__execvpe): Likewise.
* posix/fexecve.c (fexecve): Likewise.
* socket/socketpair.c (socketpair): Likewise.
* stdlib/drand48-iter.c (__drand48_iterate): Likewise.
* stdlib/erand48.c (erand48): Likewise.
* stdlib/erand48_r.c (__erand48_r): Likewise.
* stdlib/jrand48.c (jrand48): Likewise.
* stdlib/jrand48_r.c (__jrand48_r): Likewise.
* stdlib/lcong48.c (lcong48): Likewise.
* stdlib/lcong48_r.c (__lcong48_r): Likewise.
* stdlib/nrand48.c (nrand48): Likewise.
* stdlib/nrand48_r.c (__nrand48_r): Likewise.
* stdlib/seed48.c (seed48): Likewise.
* stdlib/seed48_r.c (__seed48_r): Likewise.
* sysdeps/mach/hurd/execve.c (__execve): Likewise.
* sysdeps/mach/hurd/utimes.c (__utimes): Likewise.
* sysdeps/unix/sysv/linux/fexecve.c (fexecve): Likewise.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/futimesat.c | 5 | ||||
-rw-r--r-- | misc/utimes.c | 4 |
2 files changed, 2 insertions, 7 deletions
diff --git a/misc/futimesat.c b/misc/futimesat.c index c675aa5ef1..118f6c6812 100644 --- a/misc/futimesat.c +++ b/misc/futimesat.c @@ -24,10 +24,7 @@ /* Change the access time of FILE relative to FD to TVP[0] and the modification time of FILE to TVP[1]. */ int -futimesat (fd, file, tvp) - int fd; - const char *file; - const struct timeval tvp[2]; +futimesat (int fd, const char *file, const struct timeval tvp[2]) { if (fd < 0 && (file == NULL diff --git a/misc/utimes.c b/misc/utimes.c index 6b969e7b50..c8d6f58e8e 100644 --- a/misc/utimes.c +++ b/misc/utimes.c @@ -22,9 +22,7 @@ /* Change the access time of FILE to TVP[0] and the modification time of FILE to TVP[1]. */ int -__utimes (file, tvp) - const char *file; - const struct timeval tvp[2]; +__utimes (const char *file, const struct timeval tvp[2]) { if (file == NULL) { |