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
etc/protocols - sync with NetBSD-8
[minix.git]
/
tests
/
usr.bin
/
xlint
/
lint1
/
d_gcc_compound_statements1.c
blob
d970be182648bdbfdb618232d1bbef2384a8852a
1
/* GCC compound statements */
2
3
foo
(
unsigned long
z
)
4
{
5
z
= ({
unsigned long
tmp
;
tmp
=
1
;
tmp
; });
6
foo
(
z
);
7
}