hexchat/plugins/fishlim/bool.h

6 lines
106 B
C
Raw Normal View History

2011-11-24 17:17:31 -05:00
/* stdbool.h replacement for MSVC */
#define false 0
#define true 1
#define bool _Bool
typedef int _Bool;