From 5cf0cbe4b6c23de1420b68f5045a068459c8b450 Mon Sep 17 00:00:00 2001 From: otto <> Date: Tue, 2 Oct 2007 14:06:16 +0000 Subject: [PATCH] pcc knows _Bool. ok beck@ miod @millert --- src/include/stdbool.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/stdbool.h b/src/include/stdbool.h index fca59bca..cc1104c6 100644 --- a/src/include/stdbool.h +++ b/src/include/stdbool.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdbool.h,v 1.3 2004/10/02 12:55:31 espie Exp $ */ +/* $OpenBSD: stdbool.h,v 1.4 2007/10/02 14:06:16 otto Exp $ */ /* * Written by Marc Espie, September 25, 1999 @@ -10,7 +10,7 @@ #ifndef __cplusplus -#if defined(__GNUC__) && __GNUC__ >= 3 +#if (defined(__GNUC__) && __GNUC__ >= 3) || defined(__PCC__) /* Support for _C99: type _Bool is already built-in. */ #define false 0 #define true 1