1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

* sysdeps/unix/sysv/linux/ia64/sysconf.c (linux_sysconf): Fix a typo.

This commit is contained in:
Roland McGrath
2004-10-04 22:27:43 +00:00
parent 0c70edcbc6
commit 982e38a67d
2 changed files with 5 additions and 1 deletions

View File

@ -32,7 +32,7 @@ static long int linux_sysconf (int name);
long int
__sysconf (int name)
{
if (name == _SC_CPUTIME || name == SC_THREAD_CPUTIME)
if (name == _SC_CPUTIME || name == _SC_THREAD_CPUTIME)
return has_cpuclock () ? 200112L : -1;
/* Everything else is handled by the more general code. */