repo.or.cz
/
emacs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* lisp/progmodes/python.el (python-shell-completion-get-completions):
[emacs.git]
/
nt
/
inc
/
stdbool.h
blob
521291fdd03cdf6cc741262baba6822809eb1104
1
#ifndef _NT_STDBOOL_H_
2
#define _NT_STDBOOL_H_
3
/*
4
* stdbool.h exists in GCC, but not in MSVC.
5
*/
6
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
15
16
#endif
/* _NT_STDBOOL_H_ */