12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- #ifndef _@GUARD_PREFIX@_LOCALE_H
- #if __GNUC__ >= 3
- @PRAGMA_SYSTEM_HEADER@
- #endif
- @PRAGMA_COLUMNS@
- #@INCLUDE_NEXT@ @NEXT_LOCALE_H@
- #ifndef _@GUARD_PREFIX@_LOCALE_H
- #define _@GUARD_PREFIX@_LOCALE_H
- #include <stddef.h>
- #if @HAVE_XLOCALE_H@
- # include <xlocale.h>
- #endif
- #if !defined LC_MESSAGES
- # define LC_MESSAGES 1729
- #endif
- #if @GNULIB_SETLOCALE@
- # if @REPLACE_SETLOCALE@
- # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
- # undef setlocale
- # define setlocale rpl_setlocale
- # define GNULIB_defined_setlocale 1
- # endif
- _GL_FUNCDECL_RPL (setlocale, char *, (int category, const char *locale));
- _GL_CXXALIAS_RPL (setlocale, char *, (int category, const char *locale));
- # else
- _GL_CXXALIAS_SYS (setlocale, char *, (int category, const char *locale));
- # endif
- _GL_CXXALIASWARN (setlocale);
- #elif defined GNULIB_POSIXCHECK
- # undef setlocale
- # if HAVE_RAW_DECL_SETLOCALE
- _GL_WARN_ON_USE (setlocale, "setlocale works differently on native Windows - "
- "use gnulib module setlocale for portability");
- # endif
- #endif
- #if @GNULIB_DUPLOCALE@
- # if @REPLACE_DUPLOCALE@
- # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
- # undef duplocale
- # define duplocale rpl_duplocale
- # endif
- _GL_FUNCDECL_RPL (duplocale, locale_t, (locale_t locale) _GL_ARG_NONNULL ((1)));
- _GL_CXXALIAS_RPL (duplocale, locale_t, (locale_t locale));
- # else
- # if @HAVE_DUPLOCALE@
- _GL_CXXALIAS_SYS (duplocale, locale_t, (locale_t locale));
- # endif
- # endif
- # if @HAVE_DUPLOCALE@
- _GL_CXXALIASWARN (duplocale);
- # endif
- #elif defined GNULIB_POSIXCHECK
- # undef duplocale
- # if HAVE_RAW_DECL_DUPLOCALE
- _GL_WARN_ON_USE (duplocale, "duplocale is buggy on some glibc systems - "
- "use gnulib module duplocale for portability");
- # endif
- #endif
- #endif
- #endif
|