changeset 25:d3c5223c0c5f

include: added a typedef for va_list
author Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
date Thu, 12 May 2011 13:27:53 -0400
parents f9ae64d35e81
children cabcdc3727e3
files include/stdarg.h
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/include/stdarg.h	Thu May 12 13:23:21 2011 -0400
+++ b/include/stdarg.h	Thu May 12 13:27:53 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)