changeset 93:effa07f3c157

merge
author Jonathan Pevarnek <pevarnj@gmail.com>
date Thu, 12 May 2011 13:29:23 -0400
parents 8479bfdeb375 (current diff) d3c5223c0c5f (diff)
children 191e99dffd6c
files
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/include/stdarg.h	Thu May 12 13:25:58 2011 -0400
+++ b/include/stdarg.h	Thu May 12 13:29:23 2011 -0400
@@ -1,6 +1,8 @@
 #ifndef __STDARG_H
 #define __STDARG_H
 
+typedef __builtin_va_list va_list;
+
 #define va_start(ap, last)	__builtin_va_start(ap, last)
 #define va_arg(ap, type)	__builtin_va_arg(ap, type)
 #define va_end(ap)		__builtin_va_end(ap)