gems-kernel/source/THIRDPARTY/xnu/bsd/machine/machine_private.modulemap
2024-06-03 11:29:39 -05:00

18 lines
479 B
Text

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 *
}
}