oscar64/include/stdbool.h

10 lines
102 B
C

#ifndef STDBOOL_H
#define STDBOOL_H
#define bool bool
#define true true
#define false false
#endif