1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef NO_LABEL_VALUES extern int printk(const char *fmt, ...); void foo (int x, int y) { __label__ here; here: printk ("", &&here); } #else int x; #endif