X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/fc56b708803d28b949a9181528bb0da4d25b3b7b..a9aaacca3a68bb8d74fec09d8d8681a0efda2581:/include/_types.modulemap diff --git a/include/_types.modulemap b/include/_types.modulemap new file mode 100644 index 0000000..758ee93 --- /dev/null +++ b/include/_types.modulemap @@ -0,0 +1,22 @@ +// Module map for the non-stdint.h parts of _types/. +// +// Expected to be included by the top-level module.modulemap. +// +// See also: module.modulemap +// See also: stdint.modulemap (excluded parts of _types/) + +module Darwin.POSIX._types { + export * + umbrella "_types" + + // These headers are part of Darwin_C_stdint._types. + exclude header "_types/_intmax_t.h" + exclude header "_types/_uint16_t.h" + exclude header "_types/_uint32_t.h" + exclude header "_types/_uint64_t.h" + exclude header "_types/_uint8_t.h" + exclude header "_types/_uintmax_t.h" + + // Export everything. + module * { export * } +}