diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-03-18 23:50:44 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-03-18 23:50:44 +0000 |
commit | dacb2bad80f03502d1f933382ba34b6a91096e93 (patch) | |
tree | 0352aed83fa0efa175b5620be4a889a7be8da9c6 /sysdeps | |
parent | a14b373c5d8d59b203511b31ff9f196692d7d7bb (diff) | |
download | glibc-dacb2bad80f03502d1f933382ba34b6a91096e93.tar.gz glibc-dacb2bad80f03502d1f933382ba34b6a91096e93.tar.xz glibc-dacb2bad80f03502d1f933382ba34b6a91096e93.zip |
Update.
2003-03-18 Ulrich Drepper <drepper@redhat.com> * sysdeps/posix/sysconf.c (__sysconf): Handle _SC_MONOTONIC_CLOCK correctly.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/posix/sysconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/posix/sysconf.c b/sysdeps/posix/sysconf.c index 7ad8ac7891..bf154f3e1a 100644 --- a/sysdeps/posix/sysconf.c +++ b/sysdeps/posix/sysconf.c @@ -938,7 +938,7 @@ __sysconf (name) #endif case _SC_MONOTONIC_CLOCK: -#ifdef _POSIX_MONOTONIC_CLOCK +#if _POSIX_MONOTONIC_CLOCK return _POSIX_MONOTONIC_CLOCK; #else return -1; |