view 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 source

#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