repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Drop main() prototype. Syncs with NetBSD-8
[minix.git]
/
tests
/
usr.bin
/
xlint
/
lint1
/
d_gcc_compound_statements3.c
blob
29e9063dcf4a0f64838508d1e9063f1936fa42ce
1
/* GCC compound statements with void type */
2
3
void
4
main
(
void
)
5
{
6
({
7
void
*
v
;
8
__asm__
volatile
(
"noop"
);
9
});
10
}