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
/
20000502-1.c
blob
fcf7899a1598fe343bfd6ad3bd95ca7766d6ee1c
1
static int
minimum
(
int
a
,
int
b
)
2
{
3
if
(
a
<
b
)
4
return
a
;
5
else
6
return
b
;
7
}
8
static int
a
,
b
;
9
static
inline
int
foo
(
void
)
10
{
11
a
=
minimum
(
a
,
b
);
12
return
0
;
13
}
14
static int
bar
(
void
)
15
{
16
return
foo
();
17
}