Fix name space use in last commit.
authorRoland McGrath <roland@hack.frob.com>
Tue, 23 Apr 2013 22:57:25 +0000 (15:57 -0700)
committerRoland McGrath <roland@hack.frob.com>
Tue, 23 Apr 2013 22:57:25 +0000 (15:57 -0700)
sysdeps/posix/timespec_get.c

index 22a06c8..a578e8b 100644 (file)
@@ -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;