Fix typo introduced by previous delta
[binutils.git] / libiberty / gettimeofday.c
blobf7e6c5dd377a5eae152a769615f8ce99dfd29d21
1 #include "config.h"
2 #include "libiberty.h"
3 #ifdef HAVE_TIME_H
4 #include <time.h>
5 #endif
6 #ifdef HAVE_SYS_TIME_H
7 #include <sys/time.h>
8 #endif
10 /*
12 @deftypefn int gettimeofday (struct timeval *@var{tp}, void *@var{tz})
14 Writes the current time to @var{tp}. This implementation requires
15 that @var{tz} be NULL. Returns 0 on success, -1 on failure.
17 @end deftypefn
19 */
21 int
22 gettimeofday (tp, tz)
23 struct timeval *tp;
24 void *tz;
26 if (tz)
27 abort ();
28 tp->tv_usec = 0;
29 if (time (&tp->tv_sec) == (time_t) -1)
30 return -1;
31 return 0;