summary refs log blame commit diff stats
path: root/plugins/fishlim/bool.h
blob: 2c8ddde4f76e0e0a6012d9fb17bb17c1cf5224db (plain) (tree)
1
2
3
4
5




                                    
/* stdbool.h replacement for MSVC */
#define false 0
#define true 1
#define bool _Bool
typedef int _Bool;