summaryrefslogtreecommitdiff
path: root/libpthread/nptl/sysdeps/pthread/pthread_barrier_wait.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_barrier_wait.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_barrier_wait.c')
-rw-r--r--libpthread/nptl/sysdeps/pthread/pthread_barrier_wait.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libpthread/nptl/sysdeps/pthread/pthread_barrier_wait.c b/libpthread/nptl/sysdeps/pthread/pthread_barrier_wait.c
index c6b563f24..d21ed79b1 100644
--- a/libpthread/nptl/sysdeps/pthread/pthread_barrier_wait.c
+++ b/libpthread/nptl/sysdeps/pthread/pthread_barrier_wait.c
@@ -25,8 +25,7 @@
/* Wait on barrier. */
int
-pthread_barrier_wait (barrier)
- pthread_barrier_t *barrier;
+pthread_barrier_wait (pthread_barrier_t *barrier)
{
struct pthread_barrier *ibarrier = (struct pthread_barrier *) barrier;
int result = 0;