OSDN Git Service

2009-09-23 Matthew Gingell <gingell@adacore.com>
[pf3gnuchains/gcc-fork.git] / libiberty / gettimeofday.c
index f7e6c5d..fca1679 100644 (file)
@@ -9,7 +9,7 @@
 
 /* 
 
-@deftypefn int gettimeofday (struct timeval *@var{tp}, void *@var{tz})
+@deftypefn Supplemental int gettimeofday (struct timeval *@var{tp}, void *@var{tz})
 
 Writes the current time to @var{tp}.  This implementation requires
 that @var{tz} be NULL.  Returns 0 on success, -1 on failure.
@@ -19,9 +19,7 @@ that @var{tz} be NULL.  Returns 0 on success, -1 on failure.
 */ 
 
 int
-gettimeofday (tp, tz)
-     struct timeval *tp;
-     void *tz;
+gettimeofday (struct timeval *tp, void *tz)
 {
   if (tz)
     abort ();