aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/include
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-07-07 17:50:55 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2015-07-07 17:50:55 +0200
commita28cb16aeb266fd41c0ce2ddbe0a0d8d2cbf20de (patch)
treedb93813fea34db3acecd7d628bd09ebdc81a5180 /runtime/include
parent437ac77449d759469ab4d5c8e0f37b80c0ad6e31 (diff)
downloadcompcert-kvx-a28cb16aeb266fd41c0ce2ddbe0a0d8d2cbf20de.tar.gz
compcert-kvx-a28cb16aeb266fd41c0ce2ddbe0a0d8d2cbf20de.zip
Diab defines w_char to be unsigned short.
Diffstat (limited to 'runtime/include')
-rw-r--r--runtime/include/stddef.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/include/stddef.h b/runtime/include/stddef.h
index 290434f4..46643e31 100644
--- a/runtime/include/stddef.h
+++ b/runtime/include/stddef.h
@@ -71,7 +71,7 @@ typedef signed long ptrdiff_t;
#ifdef _TYPE_wchar_t
_TYPE_wchar_t;
#else
-typedef signed int wchar_t;
+typedef unsigned short wchar_t;
#endif
#endif
#undef __need_wchar_t