Fix name space use in last commit.

This commit is contained in:
Roland McGrath 2013-04-23 15:57:25 -07:00
parent 87f51853ce
commit d6f9bc519d

View 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;