mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-06 19:22:39 +01:00
6 lines
106 B
C
6 lines
106 B
C
/* stdbool.h replacement for MSVC */
|
|
#define false 0
|
|
#define true 1
|
|
#define bool _Bool
|
|
typedef int _Bool;
|