xref: /xnu-8020.140.41/bsd/machine/machine_private.modulemap (revision 27b03b360a988dfd3dfdf34262bb0042026747cc)
1module DarwinPrivate.machine [system] {
2  #ifndef PLATFORM_MacOSX
3  module _limits {
4    header "machine/_limits.h"
5    export *
6  }
7
8  #endif
9  module cpu_capabilities {
10    header "machine/cpu_capabilities.h"
11    #if defined(PLATFORM_MacOSX) || defined(PLATFORM_iPhoneSimulator) || defined(PLATFORM_AppleTVSimulator) || defined(PLATFORM_WatchSimulator)
12    header "i386/cpu_capabilities.h"
13    #endif
14    header "arm/cpu_capabilities.h"
15
16    export *
17  }
18}
19