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
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20010118-1.c
blob
6d1fc6431c6f200440f181e2c458322883ceb0f7
1
static unsigned int
bar
(
void
*
h
,
unsigned int
n
)
2
{
3
static int
i
;
4
return
i
++;
5
}
6
7
static void
baz
(
unsigned int
*
x
)
8
{
9
(*
x
)++;
10
}
11
12
long
13
foo
(
void
*
h
,
unsigned int
l
)
14
{
15
unsigned int
n
;
16
long
m
;
17
n
=
bar
(
h
,
0
);
18
n
=
bar
(
h
,
n
);
19
m
= ({
baz
(&
n
);
21
; });
20
return
m
;
21
}