artulab
projects
/
openbsd
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
8cfd34b73b55bdfc8719ece807f21fdac47b8b75
[openbsd]
/
1
2
int func() { return 1; }
3
4
int
5
main(int argc, char const *argv[])
6
{
7
int a = 0; // breakpoint_1
8
int b = func(); // breakpoint_2
9
a = b + func(); // breakpoint_3
10
return 0; // breakpoint_4
11
}
12