Drop duplicate _ctype_ declaration from ctype_.h
It's already defined in ctype.h. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
e97109184a
commit
b690df6bbd
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
#else /* !ALLOW_NEGATIVE_CTYPE_INDEX */
|
#else /* !ALLOW_NEGATIVE_CTYPE_INDEX */
|
||||||
|
|
||||||
extern char _ctype_[];
|
/* _ctype_ is declared in <ctype.h>. */
|
||||||
# define DEFAULT_CTYPE_PTR ((char *) _ctype_)
|
# define DEFAULT_CTYPE_PTR ((char *) _ctype_)
|
||||||
|
|
||||||
#endif /* !ALLOW_NEGATIVE_CTYPE_INDEX */
|
#endif /* !ALLOW_NEGATIVE_CTYPE_INDEX */
|
||||||
|
|
|
@ -183,7 +183,7 @@ struct __locale_t
|
||||||
int (*mbtowc) (struct _reent *, wchar_t *,
|
int (*mbtowc) (struct _reent *, wchar_t *,
|
||||||
const char *, size_t, mbstate_t *);
|
const char *, size_t, mbstate_t *);
|
||||||
int cjk_lang;
|
int cjk_lang;
|
||||||
char *ctype_ptr; /* Unused in __global_locale */
|
char *ctype_ptr;
|
||||||
struct lconv lconv;
|
struct lconv lconv;
|
||||||
#ifndef __HAVE_LOCALE_INFO__
|
#ifndef __HAVE_LOCALE_INFO__
|
||||||
char mb_cur_max[2];
|
char mb_cur_max[2];
|
||||||
|
|
Loading…
Reference in New Issue