diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-01-29 17:48:54 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-01-29 18:31:16 +0100 |
commit | 7c721d31e4b7a0bdf6f803b8e7c38996bf60b59f (patch) | |
tree | 217d8054855c8c3b57c1d9ac24d83641aa566253 /libc/sysdeps | |
parent | fba639dcdcc2f3fede71e8bcd1a1a525a7f57d61 (diff) |
tmpnam, tempnam are obsolete in SUSV4
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps')
-rw-r--r-- | libc/sysdeps/linux/arm/aeabi_lcsts.c | 2 | ||||
-rw-r--r-- | libc/sysdeps/linux/common/bits/stdio_lim.h | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/arm/aeabi_lcsts.c b/libc/sysdeps/linux/arm/aeabi_lcsts.c index 0c620d4fe..e1e539093 100644 --- a/libc/sysdeps/linux/arm/aeabi_lcsts.c +++ b/libc/sysdeps/linux/arm/aeabi_lcsts.c @@ -79,7 +79,9 @@ eabi_constant (BUFSIZ); eabi_constant (FOPEN_MAX); eabi_constant (TMP_MAX); eabi_constant (FILENAME_MAX); +#ifdef __UCLIBC_SUSV4_LEGACY__ eabi_constant (L_tmpnam); +#endif FILE *__aeabi_stdin attribute_hidden; FILE *__aeabi_stdout attribute_hidden; diff --git a/libc/sysdeps/linux/common/bits/stdio_lim.h b/libc/sysdeps/linux/common/bits/stdio_lim.h index c35ee601b..2c0b36fbd 100644 --- a/libc/sysdeps/linux/common/bits/stdio_lim.h +++ b/libc/sysdeps/linux/common/bits/stdio_lim.h @@ -21,7 +21,9 @@ #endif #ifdef _STDIO_H -# define L_tmpnam 20 +# ifdef __UCLIBC_SUSV4_LEGACY__ +# define L_tmpnam 20 +# endif # define TMP_MAX 238328 # define FILENAME_MAX 4095 |