repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix up mix of man(7)/mdoc(7).
[netbsd-mini2440.git]
/
regress
/
usr.bin
/
xlint
/
lint1
/
test11.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
}