24 lines
309 B
C
24 lines
309 B
C
![]() |
#include <stdio.h>
|
||
|
|
||
|
#include "_cgo_export.h"
|
||
|
|
||
|
#define BREAKPOINT asm("int3;")
|
||
|
|
||
|
void helloworld_pt2(int x) {
|
||
|
BREAKPOINT;
|
||
|
helloWorld(x+1);
|
||
|
}
|
||
|
|
||
|
void helloworld(int x) {
|
||
|
helloworld_pt2(x+1);
|
||
|
}
|
||
|
|
||
|
void helloworld_pt4(int x) {
|
||
|
BREAKPOINT;
|
||
|
helloWorld2(x+1);
|
||
|
}
|
||
|
|
||
|
void helloworld_pt3(int x) {
|
||
|
helloworld_pt4(x+1);
|
||
|
}
|