This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* stdarg.h standard header */ | |
#ifndef _STDARG | |
#define _STDARG | |
/* type definitions */ | |
typedef char *va_list; | |
/* macros */ | |
#define va_arg(ap, T) \ | |
(* (T *)(((ap) += _Bnd(T, 3U)) - _Bnd(T, 3U))) | |
#define va_end(ap) (void)0 | |
#define va_start(ap, A) \ |