diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-11-09 21:16:58 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-11-09 21:16:58 +0000 |
commit | 9bde902c768916daeec9983dcc0c8c420cd3895d (patch) | |
tree | 3df64c33de98d7c442f8b74ebc736f5db497a737 /stdlib/stdlib.h | |
parent | fb1ae1eede65c9b7227d8f3da2e27fd720b8b711 (diff) | |
download | glibc-9bde902c768916daeec9983dcc0c8c420cd3895d.zip glibc-9bde902c768916daeec9983dcc0c8c420cd3895d.tar.gz glibc-9bde902c768916daeec9983dcc0c8c420cd3895d.tar.bz2 |
Declare ecvt, fcvt, gcvt, mktemp in stdlib.h for XOPEN2K (bug 14824).
Diffstat (limited to 'stdlib/stdlib.h')
-rw-r--r-- | stdlib/stdlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h index 0eb982c..fc83f4e 100644 --- a/stdlib/stdlib.h +++ b/stdlib/stdlib.h @@ -596,7 +596,7 @@ extern int clearenv (void) __THROW; #if defined __USE_MISC \ - || (defined __USE_XOPEN_EXTENDED && !defined __USE_XOPEN2K) + || (defined __USE_XOPEN_EXTENDED && !defined __USE_XOPEN2K8) /* Generate a unique temporary file name from TEMPLATE. The last six characters of TEMPLATE must be "XXXXXX"; they are replaced with a string that makes the file name unique. @@ -796,7 +796,7 @@ __END_NAMESPACE_C99 #endif -#if (defined __USE_XOPEN_EXTENDED && !defined __USE_XOPEN2K) \ +#if (defined __USE_XOPEN_EXTENDED && !defined __USE_XOPEN2K8) \ || defined __USE_SVID /* Convert floating point numbers to strings. The returned values are valid only until another call to the same function. */ |