You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
585 B
21 lines
585 B
--- ./akode/lib/akodelib.h.ORI 2013-07-25 11:49:19.524457787 +0200
|
|
+++ ./akode/lib/akodelib.h 2013-07-25 11:49:23.056360414 +0200
|
|
@@ -34,13 +34,13 @@
|
|
#include <inttypes.h>
|
|
#else
|
|
typedef signed char int8_t;
|
|
-typedef unsigned char int8_t;
|
|
+typedef unsigned char uint8_t;
|
|
typedef signed short int16_t;
|
|
-typedef unsigned short int16_t;
|
|
+typedef unsigned short uint16_t;
|
|
typedef signed int int32_t;
|
|
typedef unsigned int uint32_t;
|
|
-typedef signed long long int64_t;
|
|
-typedef unsigned long long uint64_t;
|
|
+typedef signed long int64_t;
|
|
+typedef unsigned long uint64_t;
|
|
#endif
|
|
|
|
#endif
|