* simple.el (password-word-equivalents): Add "passcode", used for
[emacs.git] / nt / inc / stdbool.h
blob521291fdd03cdf6cc741262baba6822809eb1104
1 #ifndef _NT_STDBOOL_H_
2 #define _NT_STDBOOL_H_
3 /*
4 * stdbool.h exists in GCC, but not in MSVC.
5 */
7 #ifdef __GNUC__
8 # include_next <stdbool.h>
9 #else
10 # define _Bool signed char
11 # define bool _Bool
12 # define false 0
13 # define true 1
14 #endif
16 #endif /* _NT_STDBOOL_H_ */