summaryrefslogtreecommitdiff
path: root/libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.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_rwlock_timedwrlock.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_rwlock_timedwrlock.c')
-rw-r--r--libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c b/libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c
index 97c0598f9..d9caa85bb 100644
--- a/libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c
+++ b/libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c
@@ -26,9 +26,9 @@
/* Try to acquire write lock for RWLOCK or return after specfied time. */
int
-pthread_rwlock_timedwrlock (rwlock, abstime)
- pthread_rwlock_t *rwlock;
- const struct timespec *abstime;
+pthread_rwlock_timedwrlock (
+ pthread_rwlock_t *rwlock,
+ const struct timespec *abstime)
{
int result = 0;