From 4e888c2117d35b588466f46faaef99df01ba94fe Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Tue, 22 Apr 2014 11:08:59 +0200 Subject: [PATCH] fixed wrong comparison operator As mentioned by Martin, i now fixed the comparison to be logically corret. --- src/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.h b/src/types.h index 91d0afa..a1c77b0 100644 --- a/src/types.h +++ b/src/types.h @@ -1,7 +1,7 @@ #ifndef TYPES_H_90878954 #define TYPES_H_90878954 -#if __STDC_VERSION__ == 199901L +#if __STDC_VERSION__ >= 199901L #include typedef bool bool_t; -- 2.30.2