summaryrefslogtreecommitdiff
path: root/sysdeps/generic/pt-atfork.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/generic/pt-atfork.c')
-rw-r--r--sysdeps/generic/pt-atfork.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/generic/pt-atfork.c b/sysdeps/generic/pt-atfork.c
index d1f3086..036427d 100644
--- a/sysdeps/generic/pt-atfork.c
+++ b/sysdeps/generic/pt-atfork.c
@@ -21,13 +21,13 @@
#include <fork.h>
/* This is defined by newer gcc version unique for each module. */
-extern void *__dso_handle __attribute__ ((__weak__,
- __visibility__ ("hidden")));
+extern void *__dso_handle __attribute__ ((__weak__, __visibility__ ("hidden")));
int
pthread_atfork (void (*prepare) (void),
void (*parent) (void),
void (*child) (void))
{
- return __register_atfork (prepare, parent, child, &__dso_handle == NULL ? NULL : __dso_handle);
+ return __register_atfork (prepare, parent, child,
+ &__dso_handle == NULL ? NULL : __dso_handle);
}