Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/ctype/towctrans_l.c')
-rw-r--r--newlib/libc/ctype/towctrans_l.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/newlib/libc/ctype/towctrans_l.c b/newlib/libc/ctype/towctrans_l.c
index 9759cf7bc..42085ac78 100644
--- a/newlib/libc/ctype/towctrans_l.c
+++ b/newlib/libc/ctype/towctrans_l.c
@@ -1,6 +1,7 @@
/* Modified (m) 2017 Thomas Wolff: revise Unicode and locale/wchar handling */
#include <_ansi.h>
#include <wctype.h>
+#include <stdint.h>
//#include <errno.h>
#include "local.h"
@@ -35,10 +36,10 @@
enum {TO1, TOLO, TOUP, TOBOTH};
enum {EVENCAP, ODDCAP};
static struct caseconv_entry {
- unsigned int first: 21;
- unsigned short diff: 8;
- unsigned char mode: 2;
- int delta: 17;
+ uint_least32_t first: 21;
+ uint_least8_t diff: 8;
+ uint_least8_t mode: 2;
+ uint_least32_t delta: 17;
} __attribute__ ((packed))
caseconv_table [] = {
#include "caseconv.t"