xref: /xnu-8019.80.24/bsd/machine/machine_private.modulemap (revision a325d9c4a84054e40bbe985afedcb50ab80993ea)
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