diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2016-08-23 12:39:42 +0200 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2016-08-23 12:39:42 +0200 |
commit | 3eace743b2e9bc34a6ee3e51aa241a45c91159b2 (patch) | |
tree | 9c72a720b3d73698f9167a0b1b7e274da8ebf93e /newlib/libc | |
parent | 2fb5e3dfb2603988640c87d69596f470900e1ff5 (diff) | |
download | cygnal-3eace743b2e9bc34a6ee3e51aa241a45c91159b2.tar.gz cygnal-3eace743b2e9bc34a6ee3e51aa241a45c91159b2.tar.bz2 cygnal-3eace743b2e9bc34a6ee3e51aa241a45c91159b2.zip |
Remove erroneous POSIX guards for reentrant locale functions
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/include/locale.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/newlib/libc/include/locale.h b/newlib/libc/include/locale.h index 6b3b78830..4fb78755e 100644 --- a/newlib/libc/include/locale.h +++ b/newlib/libc/include/locale.h @@ -71,12 +71,10 @@ struct _reent; char *_EXFUN(_setlocale_r,(struct _reent *, int, const char *)); struct lconv *_EXFUN(_localeconv_r,(struct _reent *)); -#if __POSIX_VISIBLE >= 200809 locale_t _newlocale_r (struct _reent *, int, const char *, locale_t); void _freelocale_r (struct _reent *, locale_t); locale_t _duplocale_r (struct _reent *, locale_t); locale_t _uselocale_r (struct _reent *, locale_t); -#endif /* __POSIX_VISIBLE >= 200809 */ #ifndef _REENT_ONLY |