On my system (Mac OS 10.6) /usr/include/stdarg.h is:
/* This file is public domain. */
/* GCC uses its own copy of this header */
#if defined(__GNUC__)
#include_next <stdarg.h>
#elif defined(__MWERKS__)
#include "mw_stdarg.h"
#else
#error "This header only supports __MWERKS__."
#endif
So, if GCC uses its own copy of stdarg.h, where is it? I have no idea on what
that #include_next means (maybe a GCC extension?), nor something about
"MWERKS" (a compiler?).
gcc -v -E - < /dev/null > /dev/nullprints, among other things, the list of directories that gcc will search for header files. – Zack Jul 15 '11 at 20:08#include_nextclues I found the header. Now it will be a problem to accept an answer. – sidyll Jul 15 '11 at 20:13