diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-04-25 01:11:30 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-04-25 01:11:30 +0000 |
commit | 280f4add8a69e0cf549bbe09e067424d8394a079 (patch) | |
tree | f214df4bbf17411b87667784a1586af773b1bd3c /posix/getconf.c | |
parent | 216c24b76d3a6085d9e9509d1b874093acfabfed (diff) | |
download | glibc-280f4add8a69e0cf549bbe09e067424d8394a079.tar.gz glibc-280f4add8a69e0cf549bbe09e067424d8394a079.tar.xz glibc-280f4add8a69e0cf549bbe09e067424d8394a079.zip |
Update.
* sysdeps/generic/bits/confname.h: Add _CS_V6_WIDTH_RESTRICTED_ENVS. * posix/confstr.c: Handle _CS_V6_WIDTH_RESTRICTED_ENVS. * posix/getconf.c: Handle _POSIX_V6_WIDTH_RESTRICTED_ENVS. * posix/tst-getconf.sh: Add _POSIX_V6_WIDTH_RESTRICTED_ENVS.
Diffstat (limited to 'posix/getconf.c')
-rw-r--r-- | posix/getconf.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/posix/getconf.c b/posix/getconf.c index 9458e1ef4b..8d5197e730 100644 --- a/posix/getconf.c +++ b/posix/getconf.c @@ -609,6 +609,10 @@ static const struct conf vars[] = { "POSIX_V6_ILP32_OFF32_LINTFLAGS", _CS_POSIX_V6_ILP32_OFF32_LINTFLAGS, CONFSTR }, #endif +#ifdef _CS_V6_WIDTH_RESTRICTED_ENVS + { "_POSIX_V6_WIDTH_RESTRICTED_ENVS", _CS_V6_WIDTH_RESTRICTED_ENVS, CONFSTR }, +#endif + #ifdef _SC_V6_ILP32_OFFBIG { "_POSIX_V6_ILP32_OFFBIG", _SC_V6_ILP32_OFFBIG, SYSCONF }, #endif |