diff options
author | Rich Felker <dalias@aerifal.cx> | 2019-10-17 15:27:00 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019-10-17 15:27:00 -0400 |
commit | 00ec11d19e7c5fc99b5383233510c60a565cb01b (patch) | |
tree | f14aaad653d4a4af006fe3a486e0b91029c2bfb5 /arch/x86_64/bits | |
parent | f7f1079796abc6f97c69521d2334e9c7d3945dd8 (diff) | |
download | musl-00ec11d19e7c5fc99b5383233510c60a565cb01b.tar.gz musl-00ec11d19e7c5fc99b5383233510c60a565cb01b.tar.xz musl-00ec11d19e7c5fc99b5383233510c60a565cb01b.zip |
remove per-arch definitions for va_list
now that commit f7f1079796abc6f97c69521d2334e9c7d3945dd8 removed the legacy i386 conditional definition, va_list is in no way arch-specific, and has no reason to be in the future. move it to the shared part of alltypes.h.in
Diffstat (limited to 'arch/x86_64/bits')
-rw-r--r-- | arch/x86_64/bits/alltypes.h.in | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/x86_64/bits/alltypes.h.in b/arch/x86_64/bits/alltypes.h.in index dc551d47..a484f177 100644 --- a/arch/x86_64/bits/alltypes.h.in +++ b/arch/x86_64/bits/alltypes.h.in @@ -2,9 +2,6 @@ #define _Int64 long #define _Reg long -TYPEDEF __builtin_va_list va_list; -TYPEDEF __builtin_va_list __isoc_va_list; - #ifndef __cplusplus TYPEDEF int wchar_t; #endif |