From 91015a2ea7b4015bf209d5a80860b5e5e3a8672c Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Mon, 9 Jan 2012 00:31:14 +0100 Subject: [PATCH] Made the size_t declaration compatible with GCC. --- libmaxsi/decl/size_t.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libmaxsi/decl/size_t.h b/libmaxsi/decl/size_t.h index 846c0ad0..bead15ec 100644 --- a/libmaxsi/decl/size_t.h +++ b/libmaxsi/decl/size_t.h @@ -1,4 +1,7 @@ #ifndef _SIZE_T_DECL +#ifndef _SIZE_T_DECLARED /* Compabillity with gcc */ #define _SIZE_T_DECL +#define _SIZE_T_DECLARED typedef __size_t size_t; #endif +#endif