repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Document gcov-io (PR gcov-profile/84735).
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
c11-noreturn-4.c
blob
a92a1140f676c0edd846d0e5da44a9c8bf29cb1b
1
/* Test C11 _Noreturn. Test _Noreturn on main, freestanding. */
2
/* { dg-do compile } */
3
/* { dg-options "-std=c11 -pedantic-errors -ffreestanding" } */
4
5
_Noreturn
void
exit
(
int
);
6
7
_Noreturn
int
8
main
(
void
)
9
{
10
exit
(
0
);
11
}