diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2024-08-23 01:24:37 +0200 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-09-19 18:20:21 -0700 |
| commit | dc14434c0aed409a9152a05e4741623e0e99f32a (patch) | |
| tree | da59983d64d5a67b529738c24083c437af59c264 /lib/include/module.modulemap | |
| parent | f69ff5e9b5267bd1e66ef0320b7fe6780858677d (diff) | |
| download | zig-dc14434c0aed409a9152a05e4741623e0e99f32a.tar.gz zig-dc14434c0aed409a9152a05e4741623e0e99f32a.zip | |
clang: Update compiler-provided C headers to Clang 19.
Diffstat (limited to 'lib/include/module.modulemap')
| -rw-r--r-- | lib/include/module.modulemap | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/lib/include/module.modulemap b/lib/include/module.modulemap index 56a13f69bc..9ffc249c8d 100644 --- a/lib/include/module.modulemap +++ b/lib/include/module.modulemap @@ -44,7 +44,6 @@ module _Builtin_intrinsics [system] [extern_c] { textual header "avxintrin.h" textual header "avx2intrin.h" textual header "avx512fintrin.h" - textual header "avx512erintrin.h" textual header "fmaintrin.h" header "x86intrin.h" @@ -203,6 +202,11 @@ module _Builtin_stdarg [system] { export * } + explicit module header_macro { + header "__stdarg_header_macro.h" + export * + } + explicit module va_arg { header "__stdarg_va_arg.h" export * @@ -232,6 +236,10 @@ module _Builtin_stdbool [system] { module _Builtin_stddef [system] { textual header "stddef.h" + explicit module header_macro { + header "__stddef_header_macro.h" + export * + } // __stddef_max_align_t.h is always in this module, even if // -fbuiltin-headers-in-system-modules is passed. explicit module max_align_t { @@ -315,3 +323,8 @@ module opencl_c { header "opencl-c.h" header "opencl-c-base.h" } + +module ptrauth { + header "ptrauth.h" + export * +} |
