Files
photon/libc/include/stdbool.h

9 lines
97 B
C
Raw Normal View History

2020-04-03 19:21:22 +01:00
#ifndef STDBOOL_H_
#define STDBOOL_H_
#define bool _Bool
#define true 1
#define false 0
#endif