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
/
fail-test3.c
blob
7c2e1f478ecd742c308667bc6e207781a011dee6
1
/* Flag information-losing type conversion in argument lists */
2
3
int
f
(
float
);
4
5
void
6
should_fail
()
7
{
8
double
x
=
2.0
;
9
10
f
(
x
);
11
}