blob: 496aafe2c1c780a26f6ca54bea2a17044f4e96fa [file] [log] [blame]
// PR c++/33194
void c_translate_location (
void (*fail) (
const char *fmt, ...)
__attribute__ ((noreturn,
format (printf, 1, 2)))
);
struct dwflpp
{
static void loc2c_error (const char *fmt, ...)
{
}
void
translate_location()
{
return c_translate_location (&loc2c_error);
}
};