Где находится stdarg.h?

В моей системе (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

Итак, если GCC использует свою собственную копию stdarg .h , где это? Понятия не имею, о чем что #include_next означает (может быть, расширение GCC?), ни что-то о "MWERKS" (компилятор?).

10
задан sidyll 15 July 2011 в 19:57
поделиться