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