diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-11-09 21:53:33 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-11-09 21:53:33 +0000 |
commit | 1d3bb7334ff0d85468560d1a34a429569268fcd4 (patch) | |
tree | c5f495f15962b1a244760e785d5a2f413558e268 /posix | |
parent | 1c632cebfa24f661f77e0e51d360b53d631e59b4 (diff) | |
download | glibc-1d3bb7334ff0d85468560d1a34a429569268fcd4.tar.gz glibc-1d3bb7334ff0d85468560d1a34a429569268fcd4.tar.xz glibc-1d3bb7334ff0d85468560d1a34a429569268fcd4.zip |
[BZ #3493]
* posix/unistd.h (sysconf): Remove const attribute.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/unistd.h b/posix/unistd.h index b751928b1e..c74190dfc3 100644 --- a/posix/unistd.h +++ b/posix/unistd.h @@ -559,7 +559,7 @@ extern long int pathconf (__const char *__path, int __name) extern long int fpathconf (int __fd, int __name) __THROW; /* Get the value of the system variable NAME. */ -extern long int sysconf (int __name) __THROW __attribute__ ((__const__)); +extern long int sysconf (int __name) __THROW; #ifdef __USE_POSIX2 /* Get the value of the string-valued system variable NAME. */ |