blob: dddf1c90529afc24ff05489cef089982554784f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/**
* @file stdbool.h
* @author Freya Murphy <freya@freyacat.org>
* @author Warren R. Carithers
*
* Boolean definitions.
*/
#ifndef _STDBOOL_H
#define _STDBOOL_H
// Boolean values
typedef _Bool bool;
#define true 1
#define false 0
#endif /* stdbool.h */
|