mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
[liba] Proper signed-ness of intxx_t
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user