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
/
20020709-1.c
blob
af0e1ddf4696e259a6685be629fc2d321ac27093
1
extern
double
atof
(
__const
char
*
__nptr
)
__attribute__
((
__pure__
));
2
3
void
bar
(
char
*
s
)
4
{
5
union
{
double
val
;
unsigned int
a
,
b
;}
u
;
6
u
.
val
=
atof
(
s
);
7
}