foo.cpp 191 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 #include <stdio.h> static void unique_function_name() { puts(__PRETTY_FUNCTION__); // foo breakpoint 2 } int foo(int x) { // foo breakpoint 1 unique_function_name(); return x+42; }