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