xref: /xnu-10063.101.15/osfmk/device/device.modulemap (revision 94d3b452840153a99b38a3a9659680b2a006908e) !
1*94d3b452SApple OSS Distributionsmodule Darwin.device [system] {
2*94d3b452SApple OSS Distributions  header "device/device_types.h"
3*94d3b452SApple OSS Distributions  #ifdef XNU_KERNEL_PRIVATE
4*94d3b452SApple OSS Distributions  // device_port.h is in the public SDK for macOS, but
5*94d3b452SApple OSS Distributions  // mastered out of the public SDK for the other OSes.
6*94d3b452SApple OSS Distributions  #endif
7*94d3b452SApple OSS Distributions  #ifdef XNU_PLATFORM_MacOSX
8*94d3b452SApple OSS Distributions  header "device/device_port.h"
9*94d3b452SApple OSS Distributions  #endif
10*94d3b452SApple OSS Distributions
11*94d3b452SApple OSS Distributions  export *
12*94d3b452SApple OSS Distributions}
13