summaryrefslogtreecommitdiff
path: root/libpthread/nptl/sysdeps/unix/sysv/linux/register-atfork.c
diff options
context:
space:
mode:
authorAustin Foxley <austinf@cetoncorp.com>2009-12-09 18:10:53 -0800
committerAustin Foxley <austinf@cetoncorp.com>2009-12-09 18:10:53 -0800
commit1a3ad45bb56f144b78139966b9a618675c871bb5 (patch)
tree3c128b348c7c12cf7bbb68ac6eeb4aee23cad7a0 /libpthread/nptl/sysdeps/unix/sysv/linux/register-atfork.c
parent8ebd4b8855981462a03f5930a1f8d712c021190f (diff)
nptl: fix a few more old style declerations
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libpthread/nptl/sysdeps/unix/sysv/linux/register-atfork.c')
-rw-r--r--libpthread/nptl/sysdeps/unix/sysv/linux/register-atfork.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/register-atfork.c b/libpthread/nptl/sysdeps/unix/sysv/linux/register-atfork.c
index 18b9893d9..f6c3de4bc 100644
--- a/libpthread/nptl/sysdeps/unix/sysv/linux/register-atfork.c
+++ b/libpthread/nptl/sysdeps/unix/sysv/linux/register-atfork.c
@@ -78,11 +78,11 @@ fork_handler_alloc (void)
int
-__register_atfork (prepare, parent, child, dso_handle)
- void (*prepare) (void);
- void (*parent) (void);
- void (*child) (void);
- void *dso_handle;
+__register_atfork (
+ void (*prepare) (void),
+ void (*parent) (void),
+ void (*child) (void),
+ void *dso_handle)
{
/* Get the lock to not conflict with other allocations. */
lll_lock (__fork_lock);