diff include/stdarg.h @ 90:f9ae64d35e81

include: added standard arg definitions
author Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
date Thu, 12 May 2011 13:23:21 -0400
parents
children d3c5223c0c5f
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/stdarg.h	Thu May 12 13:23:21 2011 -0400
@@ -0,0 +1,8 @@
+#ifndef __STDARG_H
+#define __STDARG_H
+
+#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)
+
+#endif