diff options
author | Austin Foxley <austinf@cetoncorp.com> | 2010-01-23 09:26:48 -0800 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2010-01-23 09:26:48 -0800 |
commit | 2b48c278aa74c9ae0bc11e6c6e329113bb82ae34 (patch) | |
tree | 5f68927cef5b5120205641be0f9c9a892427d4a1 /libpthread/nptl/sysdeps/pthread | |
parent | f2e300431f5c56c0d2019a197ad1da24592ea842 (diff) |
nptl: fix a few more old style prototypes
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libpthread/nptl/sysdeps/pthread')
-rw-r--r-- | libpthread/nptl/sysdeps/pthread/timer_create.c | 8 | ||||
-rw-r--r-- | libpthread/nptl/sysdeps/pthread/timer_delete.c | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/libpthread/nptl/sysdeps/pthread/timer_create.c b/libpthread/nptl/sysdeps/pthread/timer_create.c index 2809ac744..ae82c5af0 100644 --- a/libpthread/nptl/sysdeps/pthread/timer_create.c +++ b/libpthread/nptl/sysdeps/pthread/timer_create.c @@ -28,10 +28,10 @@ /* Create new per-process timer using CLOCK. */ int -timer_create (clock_id, evp, timerid) - clockid_t clock_id; - struct sigevent *evp; - timer_t *timerid; +timer_create ( + clockid_t clock_id, + struct sigevent *evp, + timer_t *timerid) { int retval = -1; struct timer_node *newtimer = NULL; diff --git a/libpthread/nptl/sysdeps/pthread/timer_delete.c b/libpthread/nptl/sysdeps/pthread/timer_delete.c index 48ba1f272..4c53112db 100644 --- a/libpthread/nptl/sysdeps/pthread/timer_delete.c +++ b/libpthread/nptl/sysdeps/pthread/timer_delete.c @@ -27,8 +27,8 @@ /* Delete timer TIMERID. */ int -timer_delete (timerid) - timer_t timerid; +timer_delete ( + timer_t timerid) { struct timer_node *timer; int retval = -1; |