Skip to main content
Product
Technology
Discover
Solutions
Docs
Downloads
Pricing
Search
/
Sign in
Sign up
brintos
/
llvm-project-archived
public
Read only
Watch
0
Star
0
Fork
0
Files
Commits
Issues
2
Discussions
0
Wiki
0
Insights
llvm-project-archived
/
lldb
/
test
/
API
/
python_api
/
sbmodule
/
main.c
Text
·
98 B
·
574d57d
Raw
8 lines · c
1
extern int a(int);
2
extern int b(int);
3
int main() {
4
while (1) // break here
5
;
6
return 42;
7
}
8