wifi-tally_Oostendam/nodemcu-firmware/sdk-overrides/include/stdbool.h
Eljakim Herrewijnen 50b5fc1824 Initial commit
2021-09-27 21:52:27 +02:00

13 lines
263 B
C

#ifndef __stdbool_h__
#define __stdbool_h__
// For compatibility with SDK. Boo.
typedef unsigned char bool;
#define BOOL bool
#define true (1)
#define false (0)
#define TRUE true
#define FALSE false
#endif