diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-09-20 23:01:43 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-09-20 23:01:43 +0200 |
commit | d10c3db401fb427e796fb51ac20bff438388d1b3 (patch) | |
tree | 72d1c05699b76eb173631bcc9a9650cef2137adf | |
parent | 73a04c4916f11e1f30aaca770ec1a2dbb78f7686 (diff) |
Fix old-style function definition
* libc_pthread_init.c (__libc_pthread_init): Fix old-style function
definition.
-rw-r--r-- | libc_pthread_init.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libc_pthread_init.c b/libc_pthread_init.c index f7997da..afce1f7 100644 --- a/libc_pthread_init.c +++ b/libc_pthread_init.c @@ -22,8 +22,7 @@ void internal_function -__libc_pthread_init (functions) - const struct pthread_functions *functions; +__libc_pthread_init (const struct pthread_functions *functions) { #ifdef SHARED /* We copy the content of the variable pointed to by the FUNCTIONS |