[liba] Proper signed-ness of intxx_t

This commit is contained in:
Romain Goyet
2015-09-22 15:52:01 +02:00
parent 60b34cea8a
commit 3e8ba2312d
2 changed files with 4 additions and 3 deletions

View File

@@ -3,3 +3,4 @@ SFLAGS += -Iliba/include
liba/src/external/sqlite/mem5.o: CFLAGS += -w
objs += $(addprefix liba/src/, assert.o errno.o malloc.o memcpy.o memset.o strlen.o external/sqlite/mem5.o)
tests += $(addprefix liba/test/, stdint.c)

View File

@@ -6,8 +6,8 @@ typedef unsigned int uint16_t;
typedef unsigned long uint32_t;
typedef unsigned long long uint64_t;
typedef char int8_t;
typedef long int32_t;
typedef long long int64_t;
typedef signed char int8_t;
typedef signed long int32_t;
typedef signed long long int64_t;
#endif