kern/include/stdbool.h
2025-04-03 12:29:48 -04:00

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