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