summaryrefslogtreecommitdiff
path: root/libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c
diff options
context:
space:
mode:
authorAustin Foxley <austinf@cetoncorp.com>2009-12-11 00:51:06 -0800
committerAustin Foxley <austinf@cetoncorp.com>2009-12-11 00:51:06 -0800
commit5ea195692d4e18c3fe317bcc4428777d8adab3a3 (patch)
treebb1c764a63ac6040ad0c1b5624a4678d8707359d /libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c
parent1a3ad45bb56f144b78139966b9a618675c871bb5 (diff)
nptl: fix even more old style declarations
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c')
-rw-r--r--libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c b/libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c
index d83524182..f6e83ed3f 100644
--- a/libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c
+++ b/libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c
@@ -27,8 +27,7 @@
int
-__pthread_cond_broadcast (cond)
- pthread_cond_t *cond;
+__pthread_cond_broadcast (pthread_cond_t *cond)
{
/* Make sure we are alone. */
lll_mutex_lock (cond->__data.__lock);