From: Roland McGrath Date: Tue, 23 Apr 2013 22:57:25 +0000 (-0700) Subject: Fix name space use in last commit. X-Git-Tag: glibc-2.18~382 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d6f9bc519da0ab3fadee9b967022f8122afde6b8;p=thirdparty%2Fglibc.git Fix name space use in last commit. --- diff --git a/sysdeps/posix/timespec_get.c b/sysdeps/posix/timespec_get.c index 22a06c8beec..a578e8b986a 100644 --- a/sysdeps/posix/timespec_get.c +++ b/sysdeps/posix/timespec_get.c @@ -26,7 +26,7 @@ timespec_get (struct timespec *ts, int base) switch (base) { case TIME_UTC: - if (clock_gettime (CLOCK_REALTIME, ts) < 0) + if (__clock_gettime (CLOCK_REALTIME, ts) < 0) return 0; break;