Fix some nits:

- whitespace: incorrect usage of tab or space
	- removal of comments which served either no purpose or were
	  misleading

Submitted by:	bde [a while ago]
This commit is contained in:
Jeroen Ruigrok van der Werven 2001-02-06 23:39:06 +00:00
parent 525c3eb1cf
commit 5728844663
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=72112

View File

@ -26,21 +26,18 @@
* $FreeBSD$
*/
/* This should be compliant with the ANSI C99 definition */
#ifndef _STDBOOL_H_
#ifndef _STDBOOL_H_
#define _STDBOOL_H_
#define __bool_true_false_are_defined 1
#define __bool_true_false_are_defined 1
/* And those constants must also be available as macros */
#define false 0
#define true 1
/* User visible type `bool' is provided as a macro which may be redefined */
#define bool _Bool
#define bool _Bool
#if __STDC_VERSION__ < 199901L
typedef int _Bool; /* not built into pre-C99 compilers */
typedef int _Bool;
#endif
#endif /* _STDBOOL_H_ */
#endif /* !_STDBOOL_H_ */