blob: 7131a6f78c4abf32189d9f2bb2094cb156e49d2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <ansidecl.h>
#include <localeinfo.h>
#include <stddef.h>
extern CONST struct ctype_ctype_info __ctype_ctype_C;
extern CONST struct ctype_mbchar_info __ctype_mbchar_C;
CONST struct ctype_info __ctype_C =
{
(struct ctype_ctype_info*)&__ctype_ctype_C,
(struct ctype_mbchar_info*) &__ctype_mbchar_C
};
CONST struct ctype_info *_ctype_info = &__ctype_C;
|