Files
FireBee_Setup/devtools/ahcccf.bin/include/stdarg.h
2022-10-02 10:09:40 +02:00

27 lines
521 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* STDARG.H
Parameter List Definition Includes
Copyright (c) Borland International 1990
All Rights Reserved.
*/
#if !defined(__STDARG)
#define __STDARG
typedef char *va_list;
#define va_start(ap, parmN) ((ap) = (char *)...)
#define va_arg(ap, type) \
((sizeof(type) == 1) ? \
(*(type *)((ap += 2) - 1)) : \
(*((type *)(ap))++))
#define va_end(ap) (void)0
#endif
/************************************************************************/