index
:
undefined-samples
master
undefined-samples
minimal C programs that exhibit undefined behavior
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
returning-from-a-_Noreturn-function.c
blob: ec072bebb7a50f4deefb459890aa235e855c8daf (
plain
)
1
2
3
4
5
6
7
8
9
_Noreturn void foo(void) { return; } int main(void) { foo(); }