add F_SETSIG and F_GETSIG (linux specific) to fcntl.h
[musl] / arch / arm / bits / alltypes.h.sh
index 6409a96..ddc5c06 100755 (executable)
@@ -22,12 +22,10 @@ TYPEDEF long ptrdiff_t;
 
 TYPEDEF __builtin_va_list va_list;
 
-#ifdef __WCHAR_TYPE__
-TYPEDEF __WCHAR_TYPE__ wchar_t;
-#else
-TYPEDEF long wchar_t;
+#ifndef __cplusplus
+TYPEDEF unsigned wchar_t;
 #endif
-TYPEDEF long wint_t;
+TYPEDEF int wint_t;
 TYPEDEF long wctrans_t;
 TYPEDEF long wctype_t;
 
@@ -58,6 +56,9 @@ TYPEDEF uint64_t           uint_fast64_t;
 TYPEDEF long          intptr_t;
 TYPEDEF unsigned long uintptr_t;
 
+TYPEDEF float float_t;
+TYPEDEF double double_t;
+
 TYPEDEF long time_t;
 TYPEDEF int suseconds_t;
 STRUCT timeval { time_t tv_sec; int tv_usec; };