mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
d8931259d0
because we had another one in missing/stdbool.h as well. Assuming that _Bool does not exist when stdbool.h is absent, I'm in favor of r57462 implementation rather than r61326. Note that Visual Studio 2013 has stdbool.h and thus r57462's commit message is somewhat misleading. This missing/stdbool.h is for Visual Studio 2012 or older, and for Oracle Solaris Studio 12.2 or older because it's added in 12.3 https://docs.oracle.com/cd/E24457_01/html/E21987/gkeza.html. missing/stdbool.h: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66739 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
20 lines
377 B
C
20 lines
377 B
C
/*
|
|
* missing/stdbool.h: Quick alternative of C99 stdbool.h
|
|
*/
|
|
|
|
#ifndef _MISSING_STDBOOL_H_
|
|
#define _MISSING_STDBOOL_H_
|
|
|
|
#ifndef __bool_true_false_are_defined
|
|
# ifndef __cplusplus
|
|
# undef bool
|
|
# undef false
|
|
# undef true
|
|
# define bool signed char
|
|
# define false 0
|
|
# define true 1
|
|
# define __bool_true_false_are_defined 1
|
|
# endif
|
|
#endif
|
|
|
|
#endif /* _MISSING_STDBOOL_H_ */
|