aboutsummaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorPedro F. Giffuni <pfg@FreeBSD.org>2016-12-31 15:30:00 +0000
committerPedro F. Giffuni <pfg@FreeBSD.org>2016-12-31 15:30:00 +0000
commitba7161ed720edece3714bf37d6903e85bd825b66 (patch)
treebc0daecafe892ee7ddb4c78007e873517b910bc8 /lib/libc
parent8ffb87bf8cb7ea72e3197c2e51fce77c4c2e3d71 (diff)
Notes
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/locale/mblocal.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/libc/locale/mblocal.h b/lib/libc/locale/mblocal.h
index c4724b548be3..acb1c21940b8 100644
--- a/lib/libc/locale/mblocal.h
+++ b/lib/libc/locale/mblocal.h
@@ -65,18 +65,18 @@ extern struct xlocale_ctype __xlocale_global_ctype;
/*
* Rune initialization function prototypes.
*/
-__hidden int _none_init(struct xlocale_ctype *, _RuneLocale *);
-__hidden int _ascii_init(struct xlocale_ctype *, _RuneLocale *);
-__hidden int _UTF8_init(struct xlocale_ctype *, _RuneLocale *);
-__hidden int _EUC_CN_init(struct xlocale_ctype *, _RuneLocale *);
-__hidden int _EUC_JP_init(struct xlocale_ctype *, _RuneLocale *);
-__hidden int _EUC_KR_init(struct xlocale_ctype *, _RuneLocale *);
-__hidden int _EUC_TW_init(struct xlocale_ctype *, _RuneLocale *);
-__hidden int _GB18030_init(struct xlocale_ctype *, _RuneLocale *);
-__hidden int _GB2312_init(struct xlocale_ctype *, _RuneLocale *);
-__hidden int _GBK_init(struct xlocale_ctype *, _RuneLocale *);
-__hidden int _BIG5_init(struct xlocale_ctype *, _RuneLocale *);
-__hidden int _MSKanji_init(struct xlocale_ctype *, _RuneLocale *);
+int _none_init(struct xlocale_ctype *, _RuneLocale *) __hidden;
+int _UTF8_init(struct xlocale_ctype *, _RuneLocale *) __hidden;
+int _EUC_CN_init(struct xlocale_ctype *, _RuneLocale *) __hidden;
+int _EUC_JP_init(struct xlocale_ctype *, _RuneLocale *) __hidden;
+int _EUC_KR_init(struct xlocale_ctype *, _RuneLocale *) __hidden;
+int _EUC_TW_init(struct xlocale_ctype *, _RuneLocale *) __hidden;
+int _GB18030_init(struct xlocale_ctype *, _RuneLocale *) __hidden;
+int _GB2312_init(struct xlocale_ctype *, _RuneLocale *) __hidden;
+int _GBK_init(struct xlocale_ctype *, _RuneLocale *) __hidden;
+int _BIG5_init(struct xlocale_ctype *, _RuneLocale *) __hidden;
+int _MSKanji_init(struct xlocale_ctype *, _RuneLocale *) __hidden;
+int _ascii_init(struct xlocale_ctype *, _RuneLocale *) __hidden;
typedef size_t (*mbrtowc_pfn_t)(wchar_t * __restrict,
const char * __restrict, size_t, mbstate_t * __restrict);