void GOMP_PLUGIN_debug (int kind, const char *msg, ...) { va_list ap; va_start (ap, msg); gomp_vdebug (kind, msg, ap); va_end (ap); }
void gomp_debug (int kind, const char *msg, ...) { va_list list; va_start (list, msg); gomp_vdebug (kind, msg, list); va_end (list); }