diff options
Diffstat (limited to 'libpthread/nptl/pthread_atfork.c')
-rw-r--r-- | libpthread/nptl/pthread_atfork.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libpthread/nptl/pthread_atfork.c b/libpthread/nptl/pthread_atfork.c index 491362e19..5e9b35284 100644 --- a/libpthread/nptl/pthread_atfork.c +++ b/libpthread/nptl/pthread_atfork.c @@ -44,10 +44,10 @@ extern void *__dso_handle __attribute__ ((__weak__)); /* Hide the symbol so that no definition but the one locally in the executable or DSO is used. */ int -__pthread_atfork (prepare, parent, child) - void (*prepare) (void); - void (*parent) (void); - void (*child) (void); +__pthread_atfork ( + void (*prepare) (void), + void (*parent) (void), + void (*child) (void)) { return __register_atfork (prepare, parent, child, &__dso_handle == NULL ? NULL : __dso_handle); |