X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=blobdiff_plain;f=lib%2Fsilcutil%2Fsilctypes.h;h=d7f979766577c666ee2e5f6726ab4f2727bb28a4;hp=b22c7e771d83b1de276eb8edf1aab09ff59aab90;hb=41bac7b295aab8a09a1add8ca02db472fcd31184;hpb=9606632e594c94958116127a39e4411888c4a30b diff --git a/lib/silcutil/silctypes.h b/lib/silcutil/silctypes.h index b22c7e77..d7f97976 100644 --- a/lib/silcutil/silctypes.h +++ b/lib/silcutil/silctypes.h @@ -177,14 +177,14 @@ typedef signed short SilcInt16; * * SOURCE */ -#if SILC_SIZEOF_LONG == 4 -typedef unsigned long SilcUInt32; -typedef signed long SilcInt32; -#else #if SILC_SIZEOF_INT == 4 typedef unsigned int SilcUInt32; typedef signed int SilcInt32; #else +#if SILC_SIZEOF_LONG == 4 +typedef unsigned long SilcUInt32; +typedef signed long SilcInt32; +#else #if SILC_SIZEOF_LONG_LONG >= 4 #ifndef WIN32 typedef unsigned long long SilcUInt32;