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 mdoc(7)/man(7) mix up.
[netbsd-mini2440.git]
/
lib
/
libc
/
arch
/
vax
/
gen
/
infinityf.c
blob
7abf9c34af8e9cf0dac6bdd1ddfafa150140809b
1
/* $NetBSD$ */
2
3
/*
4
* infinityf.c - max. value representable in VAX F_floating -- public domain.
5
* This is _not_ infinity.
6
*/
7
8
#include <math.h>
9
10
const union
__float_u __infinityf
=
11
{ {
0xff
,
0x7f
,
0xff
,
0xff
} };