Hi,
Now i am considering to add a function with variable arguments. so <stdarg.h> is included into my project, in this header file, the definition of va_start is as below,
#define va_start(_ap, _parmN) \
(_ap = ((char *)__va_parmadr(_parmN)) + \
(__va_argref(_parmN) ? sizeof(&_parmN) : \
(sizeof(_parmN) < 4 ? 4 : sizeof(_parmN))))
But I 'd like to know the definition of __va_parmadr and __va_argref as well, Where could I find them, thanks. I am using Faraday chip (6488).