move typedefs alltogether

This commit is contained in:
2023-06-22 15:17:32 +02:00
parent f2fffc18ea
commit 318a68c208

View File

@@ -50,6 +50,9 @@ typedef unsigned long int ulong;
typedef unsigned int uint; typedef unsigned int uint;
typedef unsigned short ushort; typedef unsigned short ushort;
typedef unsigned char uchar; typedef unsigned char uchar;
/* char is a special case, as it can be signed or unsigned
*/
typedef signed char schar;
/* define common types sizes /* define common types sizes
*/ */
@@ -113,10 +116,6 @@ static __always_inline int popcount32(u32 n)
# endif # endif
} }
/* char is a special case, as it can be signed or unsigned
*/
typedef signed char schar;
/* count trailing zeroes : 00101000 -> 3 /* count trailing zeroes : 00101000 -> 3
* ^^^ * ^^^
*/ */