From 61949c20ab10d2584f349b07b676a632c704f7e9 Mon Sep 17 00:00:00 2001 From: Romain Goyet Date: Mon, 7 Sep 2015 18:42:22 +0200 Subject: [PATCH] [liba] Define uint8_t --- liba/include/stdint.h | 1 + 1 file changed, 1 insertion(+) diff --git a/liba/include/stdint.h b/liba/include/stdint.h index 6adf681f3..f74c3ee01 100644 --- a/liba/include/stdint.h +++ b/liba/include/stdint.h @@ -6,6 +6,7 @@ typedef unsigned int uint16_t; typedef unsigned long uint32_t; typedef unsigned long long uint64_t; +typedef char int8_t; typedef long long int64_t; #endif