gems-kernel/source/THIRDPARTY/xnu/bsd/machine/machine_private.modulemap

19 lines
479 B
Text
Raw Normal View History

2024-06-03 16:29:39 +00:00
module DarwinPrivate.machine [system] {
#ifndef XNU_PLATFORM_MacOSX
module _limits {
header "machine/_limits.h"
export *
}
#endif
module cpu_capabilities {
header "machine/cpu_capabilities.h"
#if defined(XNU_PLATFORM_MacOSX) || defined(XNU_PLATFORM_iPhoneSimulator) || defined(XNU_PLATFORM_AppleTVSimulator) || defined(XNU_PLATFORM_WatchSimulator)
header "i386/cpu_capabilities.h"
#endif
header "arm/cpu_capabilities.h"
export *
}
}