diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-09-20 22:48:54 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-09-20 22:48:54 +0200 |
commit | 73a04c4916f11e1f30aaca770ec1a2dbb78f7686 (patch) | |
tree | e8b2b958c31c068a78bf8a201ff4d00ff82a6653 /sysdeps/pthread/flockfile.c | |
parent | a87bf9a8eab3af79798131b60c1f7f92f995df8c (diff) |
Fix old-style function definitions
* sysdeps/pthread/flockfile.c (__flockfile): Fix old-style function
definition.
* sysdeps/pthread/ftrylockfile.c (__ftrylockfile): Likewise.
* sysdeps/pthread/funlockfile.c (__funlockfile): Likewise.
Diffstat (limited to 'sysdeps/pthread/flockfile.c')
-rw-r--r-- | sysdeps/pthread/flockfile.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sysdeps/pthread/flockfile.c b/sysdeps/pthread/flockfile.c index 89e690d..749a11c 100644 --- a/sysdeps/pthread/flockfile.c +++ b/sysdeps/pthread/flockfile.c @@ -22,8 +22,7 @@ void -__flockfile (stream) - FILE *stream; +__flockfile (FILE *stream) { #ifdef SHARED __libc_ptf_call (_IO_flockfile, (stream), 0); |