Displaying 2 results from an estimated 2 matches for "_va_list".
Did you mean:
va_list
2017 Dec 01
2
[Release-testers] 5.0.1-rc2 has been tagged
...the LLVM git monorepo to the embedded LLD.
* Patches to clang headers:
diff --git a/c_headers/stdarg.h b/c_headers/stdarg.h
index d603d353..101426ff 100644
--- a/c_headers/stdarg.h
+++ b/c_headers/stdarg.h
@@ -26,14 +26,10 @@
#ifndef __STDARG_H
#define __STDARG_H
-/* zig: added because macos _va_list.h was duplicately defining va_list
- */
#ifndef _VA_LIST
-#ifndef _VA_LIST_T
typedef __builtin_va_list va_list;
#define _VA_LIST
#endif
-#endif
#define va_start(ap, param) __builtin_va_start(ap, param)
#define va_end(ap) __builtin_va_end(ap)
#define va_arg(ap, type) __builtin_va_...
2017 Nov 30
9
5.0.1-rc2 has been tagged
Hi,
I've tagged the 5.0.1-rc2 release, go ahead and start testing and report
your results.
-Tom