Browse Source

nptl: fix a few more old style prototypes

Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Austin Foxley 14 years ago
parent
commit
2b48c278aa

+ 4 - 4
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;

+ 2 - 2
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;