From: Ulrich Drepper Date: Tue, 18 Mar 2003 23:50:44 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_3_3~1166 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dacb2bad80f03502d1f933382ba34b6a91096e93;p=thirdparty%2Fglibc.git Update. 2003-03-18 Ulrich Drepper * sysdeps/posix/sysconf.c (__sysconf): Handle _SC_MONOTONIC_CLOCK correctly. --- diff --git a/ChangeLog b/ChangeLog index fb21992d8ca..f1b1773904b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-03-18 Ulrich Drepper + + * sysdeps/posix/sysconf.c (__sysconf): Handle _SC_MONOTONIC_CLOCK + correctly. + 2003-03-18 Steven Munroe * sysdeps/powerpc/powerpc64/memcpy.S: New file. diff --git a/sysdeps/posix/sysconf.c b/sysdeps/posix/sysconf.c index 7ad8ac7891f..bf154f3e1ac 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;