Browse Source

Recognize _SC_MONOTONIC_CLOCK in sysconf() even if __NR_clock_getres
is not defined.

Peter Kjellerstedt 17 years ago
parent
commit
502f1bc19f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      libc/unistd/sysconf.c

+ 2 - 2
libc/unistd/sysconf.c

@@ -884,14 +884,14 @@ long int sysconf(int name)
       RETURN_NEG_1;
 #endif
 
-#ifdef __NR_clock_getres
     case _SC_MONOTONIC_CLOCK:
+#ifdef __NR_clock_getres
       /* Check using the clock_getres system call.  */
       if (clock_getres(CLOCK_MONOTONIC, NULL) >= 0)
         return _POSIX_VERSION;
+#endif
 
       RETURN_NEG_1;
-#endif
     }
 }
 libc_hidden_def(sysconf)