/ include / _types.modulemap
_types.modulemap
 1  // Module map for the non-stdint.h parts of _types/.
 2  //
 3  // Expected to be included by the top-level module.modulemap.
 4  //
 5  // See also: module.modulemap
 6  // See also: stdint.modulemap (excluded parts of _types/)
 7  
 8  module Darwin.POSIX._types {
 9          export *
10          umbrella "_types"
11  
12          // These headers are part of Darwin_C_stdint._types.
13          exclude header "_types/_intmax_t.h"
14          exclude header "_types/_uint16_t.h"
15          exclude header "_types/_uint32_t.h"
16          exclude header "_types/_uint64_t.h"
17          exclude header "_types/_uint8_t.h"
18          exclude header "_types/_uintmax_t.h"
19  
20          // Export everything.
21          module * { export * }
22  }