home *** CD-ROM | disk | FTP | other *** search
- /* STDARG.H: prototypes for variable argument lists */
- /* Copyright KEIL ELEKTRONIK GmbH 1990 V5.00 */
-
- #ifndef NULL
- #define NULL ((void *) 0)
- #endif
-
- #ifndef _VA_LIST_DEFINED
- typedef char *va_list;
- #define _VA_LIST_DEFINED
- #endif
-
- #define va_start(ap,v) ap = (va_list)&v + sizeof(v)
- #define va_arg(ap,t) (((t *)ap)++[0])
- #define va_end(ap)
-