aboutsummaryrefslogtreecommitdiff
path: root/include/lib/bool.h
blob: 171c0150afe6c275e0a4baff43e448ffcffca625 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef INC_LIB_BOOL_H
#define INC_LIB_BOOL_H

#include <stdint.h>

#define bool_t uint8_t
#define FALSE 0
#define TRUE 1

#endif