summaryrefslogtreecommitdiff
path: root/libc/unistd
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2007-01-22 09:20:55 +0000
committerPeter Kjellerstedt <peter.kjellerstedt@axis.com>2007-01-22 09:20:55 +0000
commit502f1bc19f336355f88eb25cfbfde36dbd866f24 (patch)
tree72f3fbcb2086d615fa99fe690277eb851e52455a /libc/unistd
parent294c41548a1e8517b2becd2f0079759b8abfa3d2 (diff)
Recognize _SC_MONOTONIC_CLOCK in sysconf() even if __NR_clock_getres
is not defined.
Diffstat (limited to 'libc/unistd')
-rw-r--r--libc/unistd/sysconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/unistd/sysconf.c b/libc/unistd/sysconf.c
index c1b5da64d..66bcf9045 100644
--- a/libc/unistd/sysconf.c
+++ b/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)