repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove building with NOCRYPTO option
[minix.git]
/
lib
/
libc
/
arch
/
vax
/
gen
/
infinityf.c
blob
49a2704e4a1219d919f59ebd411b7749e0d77f0e
1
/* $NetBSD: infinityf.c,v 1.1 2003/10/25 22:31:20 kleink Exp $ */
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
} };