diff options
Diffstat (limited to 'libc/misc/time/ftime.c')
-rw-r--r-- | libc/misc/time/ftime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/time/ftime.c b/libc/misc/time/ftime.c index 24789c9eb..cd7d7f9e2 100644 --- a/libc/misc/time/ftime.c +++ b/libc/misc/time/ftime.c @@ -25,7 +25,7 @@ struct timeb *timebuf; struct timeval tv; struct timezone tz; - if (gettimeofday (&tv, &tz) < 0) + if (__libc_gettimeofday (&tv, &tz) < 0) return -1; timebuf->time = tv.tv_sec; |