From 36594dc120ed90c3d82b1aef77dafd87b2252e4b Mon Sep 17 00:00:00 2001 From: Hugues Delorme Date: Wed, 29 Jan 2014 11:28:36 +0100 Subject: [PATCH] global.h: alais foug_bool_t to int (instead of int8_t) --- src/global.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/global.h b/src/global.h index 26aa5e1..de620d5 100644 --- a/src/global.h +++ b/src/global.h @@ -47,7 +47,7 @@ typedef unsigned long long uint64_t; #endif /* FOUG_USE_STDINT_H */ -typedef int8_t foug_bool_t; +typedef int foug_bool_t; typedef float foug_real32_t; typedef double foug_real64_t;