Remove unneeded guard.

There is no reason why <stdbool.h> needs an include guard. It is already
protected by __bool_true_false_are_defined.
This commit is contained in:
Ed Schouten 2011-12-25 20:15:41 +00:00
parent 04885212b1
commit 576fb69bc9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=228878
1 changed files with 0 additions and 5 deletions

View File

@ -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_ */