first commit - moved from local dev to git
This commit is contained in:
23
devtools/ahcccf.bin/sinclude/stdarg.h
Normal file
23
devtools/ahcccf.bin/sinclude/stdarg.h
Normal file
@@ -0,0 +1,23 @@
|
||||
/* 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
|
||||
Reference in New Issue
Block a user