Parent Directory | Revision Log | Revision Graph
update
1 | nishi | 1.1 | /* $Id: stdbool.h 212 2024-10-02 17:44:55Z nishi $ */ |
2 | |||
3 | #ifndef __STDBOOL_H__ | ||
4 | #define __STDBOOL_H__ | ||
5 | |||
6 | typedef unsigned char bool; | ||
7 | |||
8 | #define true 1 | ||
9 | #define false 0 | ||
10 | |||
11 | #endif |
nishi@chaotic.ninja | ViewVC Help |
Powered by ViewVC 1.3.0-dev |