Move __hidden attribute towards the end of the declaration.

Apple had them at the start but moving them to the end is better for
faster reading and fits better what is done in other FreeBSD headers.

MFC after:	5 days
This commit is contained in:
Pedro F. Giffuni 2016-12-31 15:30:00 +00:00
parent 8ffb87bf8c
commit ba7161ed72
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=310976

View File

@ -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);