Move the job of converting provided coeffects to ambient coeffects from callee to...
[hiphop-php.git] / hphp / neo / neo_bool.h
blob503da268b1ad3bd03d101e0ea7dcb3935ce8c115
1 #ifndef incl_HPHP_NEO_BOOL_H_
2 #define incl_HPHP_NEO_BOOL_H_ 1
4 #ifndef TRUE
5 #define TRUE 1
6 #endif
7 #ifndef FALSE
8 #define FALSE 0
9 #endif
11 #ifdef _MSC_VER
12 typedef int BOOL;
13 #else
14 typedef char BOOL;
15 #endif
17 #endif /* incl_HPHP_NEO_BOOL_H_ */