xref: /freebsd/lib/libc/locale/nomacros.c (revision 63f537551380d2dab29fa402ad1269feae17e594)
1 #include <sys/cdefs.h>
2 /*
3  * Tell <ctype.h> to generate extern versions of all its inline
4  * functions.  The extern versions get called if the system doesn't
5  * support inlines or the user defines _DONT_USE_CTYPE_INLINE_
6  * before including <ctype.h>.
7  */
8 #define _EXTERNALIZE_CTYPE_INLINES_
9 
10 /*
11  * Also make sure <runetype.h> does not generate an inline definition
12  * of __getCurrentRuneLocale().
13  */
14 #define __RUNETYPE_INTERNAL
15 
16 #include <ctype.h>
17