2003-03-18  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/posix/sysconf.c (__sysconf): Handle _SC_MONOTONIC_CLOCK
	correctly.
This commit is contained in:
Ulrich Drepper 2003-03-18 23:50:44 +00:00
parent a14b373c5d
commit dacb2bad80
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-03-18 Ulrich Drepper <drepper@redhat.com>
* sysdeps/posix/sysconf.c (__sysconf): Handle _SC_MONOTONIC_CLOCK
correctly.
2003-03-18 Steven Munroe <sjmunroe@us.ibm.com>
* sysdeps/powerpc/powerpc64/memcpy.S: New file.

View File

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