Exemplo n.º 1
0
void
GOMP_PLUGIN_fatal (const char *msg, ...)
{
  va_list ap;

  va_start (ap, msg);
  gomp_vfatal (msg, ap);
  va_end (ap);
}
Exemplo n.º 2
0
Arquivo: error.c Projeto: 0day-ci/gcc
void
gomp_fatal (const char *fmt, ...)
{
  va_list list;

  va_start (list, fmt);
  gomp_vfatal (fmt, list);
  va_end (list);
}