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 /include | |
parent | f7f1079796abc6f97c69521d2334e9c7d3945dd8 (diff) | |
download | musl-00ec11d19e7c5fc99b5383233510c60a565cb01b.tar.gz musl-00ec11d19e7c5fc99b5383233510c60a565cb01b.tar.bz2 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 'include')
-rw-r--r-- | include/alltypes.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/alltypes.h.in b/include/alltypes.h.in index 4cc879b1..8e76c839 100644 --- a/include/alltypes.h.in +++ b/include/alltypes.h.in @@ -60,6 +60,9 @@ TYPEDEF struct { unsigned __attr[2]; } pthread_rwlockattr_t; STRUCT _IO_FILE { char __x; }; TYPEDEF struct _IO_FILE FILE; +TYPEDEF __builtin_va_list va_list; +TYPEDEF __builtin_va_list __isoc_va_list; + TYPEDEF struct __mbstate_t { unsigned __opaque1, __opaque2; } mbstate_t; TYPEDEF struct __locale_struct * locale_t; |