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