mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
We wouldn't care except that its constants are named TRUE and FALSE and that shows up in the global namespace. rdar://problem/20943410 Swift SVN r29651
20 lines
281 B
C
20 lines
281 B
C
#ifndef _MACH_O_DYLD_H_
|
|
#define _MACH_O_DYLD_H_
|
|
|
|
#if __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef ENUM_DYLD_BOOL
|
|
#define ENUM_DYLD_BOOL
|
|
#undef FALSE
|
|
#undef TRUE
|
|
enum DYLD_BOOL { FALSE, TRUE };
|
|
#endif /* ENUM_DYLD_BOOL */
|
|
|
|
#if __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _MACH_O_DYLD_H_ */
|