blob: f3e01b78f575b9dc351497e62a0eef2424dad4df [file] [log] [blame] [edit]
#include <stdint.h>
int a_function() { return 123; }
int main() {
const uintptr_t a_function_addr = (uintptr_t)a_function;
// Set break point at this line.
return a_function();
}