From: Kevin Day Date: Wed, 7 Mar 2012 03:45:48 +0000 (-0600) Subject: Bugfix: there is no such thing as signed/unsigned double X-Git-Tag: 0.3.x~11 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=b59d52531e9ec0d6b8c7aaaf762e903383763ed4;p=fll Bugfix: there is no such thing as signed/unsigned double Leave the signed and unsigned typedefs for convenience and compatibility purposes, but change the types to valid C data types. --- diff --git a/level_0/f_types/c/types.h b/level_0/f_types/c/types.h index f32f0cf..bf2f4f8 100644 --- a/level_0/f_types/c/types.h +++ b/level_0/f_types/c/types.h @@ -33,15 +33,15 @@ extern "C"{ #define f_s_short signed short #define f_s_long_long signed long long #define f_s_short_short signed short - #define f_s_double signed double - #define f_s_long_double signed long double + #define f_s_double double + #define f_s_long_double long double #define f_u_int unsigned int #define f_u_short unsigned short #define f_u_short_short unsigned short #define f_u_long unsigned long #define f_u_long_long unsigned long long - #define f_u_double unsigned double - #define f_u_long_double unsigned long double + #define f_u_double double + #define f_u_long_double long double #define f_char char // should ONLY be char #define f_wchar wchar // should ONLY be wchar #define f_autochar char // can be wchar or char