18 lines
182 B
C
18 lines
182 B
C
|
#ifndef __VA_LIST__H
|
||
|
#define __VA_LIST__H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
/* va list parameter list */
|
||
|
typedef unsigned char *va_list;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif
|