mirror of
https://github.com/kenshineto/kern.git
synced 2025-04-21 20:57:25 +00:00
17 lines
263 B
C
17 lines
263 B
C
/**
|
|
* @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 */
|