[git commit nptl] nptl: fix a few more old style prototypes

Austin Foxley austinf at cetoncorp.com
Fri Jan 22 12:57:32 UTC 2010


commit: http://git.uclibc.org/uClibc/commit/?id=2b48c278aa74c9ae0bc11e6c6e329113bb82ae34
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/nptl

Signed-off-by: Austin Foxley <austinf at cetoncorp.com>
---
 libpthread/nptl/sysdeps/pthread/timer_create.c |    8 ++++----
 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 2809ac7..ae82c5a 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 48ba1f2..4c53112 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;
-- 
1.6.3.3



More information about the uClibc-cvs mailing list