xref: /xnu-8796.121.2/bsd/machine/machine_private.modulemap (revision c54f35ca767986246321eb901baf8f5ff7923f6a)
1module DarwinPrivate.machine [system] {
2  #ifndef XNU_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(XNU_PLATFORM_MacOSX) || defined(XNU_PLATFORM_iPhoneSimulator) || defined(XNU_PLATFORM_AppleTVSimulator) || defined(XNU_PLATFORM_WatchSimulator)
12    header "i386/cpu_capabilities.h"
13    #endif
14    header "arm/cpu_capabilities.h"
15
16    export *
17  }
18}
19