diff options
Diffstat (limited to 'lib-src/profile.c')
-rw-r--r-- | lib-src/profile.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib-src/profile.c b/lib-src/profile.c index 9c3ebcef539..e2fa4793b63 100644 --- a/lib-src/profile.c +++ b/lib-src/profile.c @@ -63,7 +63,7 @@ get_time () } #if ! defined (HAVE_GETTIMEOFDAY) && defined (HAVE_TIMEVAL) - + /* ARGSUSED */ gettimeofday (tp, tzp) struct timeval *tp; @@ -71,12 +71,12 @@ gettimeofday (tp, tzp) { extern long time (); - tp->tv_sec = time ((long *)0); + tp->tv_sec = time ((long *)0); tp->tv_usec = 0; if (tzp != 0) tzp->tz_minuteswest = -1; } - + #endif int |