rulimine/stdinc/stdbool.h

10 lines
104 B
C

#ifndef __STDBOOL_H__
#define __STDBOOL_H__
#define bool _Bool
#define true 1
#define false 0
#endif