Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – tendra.SVN – Blame – /trunk/src/lib/machines/freebsd/amd64/include/stdbool.h – Rev 112

Subversion Repositories tendra.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
112 7u83 1
#ifndef __TENDRA_STDBOOL_H
2
#define __TENDRA_STDBOOL_H
3
 
4
#if __STDC_VERSION__ < 199901L
5
#define _Bool int
6
#endif 
7
 
8
#define bool _Bool
9
#define true 1
10
#define false 0
11
#define __bool_true_false_are_defined 1
12
 
13
#endif