From 576fb69bc985dce3e2a2838de2f152be59b7f8cd Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Sun, 25 Dec 2011 20:15:41 +0000 Subject: [PATCH] Remove unneeded guard. There is no reason why needs an include guard. It is already protected by __bool_true_false_are_defined. --- include/stdbool.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/stdbool.h b/include/stdbool.h index 099549cbfbe9..48070c18dfc0 100644 --- a/include/stdbool.h +++ b/include/stdbool.h @@ -26,9 +26,6 @@ * $FreeBSD$ */ -#ifndef _STDBOOL_H_ -#define _STDBOOL_H_ - #ifndef __bool_true_false_are_defined #define __bool_true_false_are_defined 1 @@ -44,5 +41,3 @@ typedef int _Bool; #endif /* !__cplusplus */ #endif /* __bool_true_false_are_defined */ - -#endif /* !_STDBOOL_H_ */