minix/lib/nbsd_libc/arch/vax/gen/infinityf.c
Gianluca Guida b6cbf7203b Import unmodified NetBSD libc in trunk
This patch imports the unmodified current version of NetBSD libc.
The NetBSD includes are in /nbsd_include, while the libc code itself is 
split between lib/nbsd_libc and common/lib/libc.
2011-02-14 19:36:03 +00:00

12 lines
269 B
C

/* $NetBSD: infinityf.c,v 1.1 2003/10/25 22:31:20 kleink Exp $ */
/*
* infinityf.c - max. value representable in VAX F_floating -- public domain.
* This is _not_ infinity.
*/
#include <math.h>
const union __float_u __infinityf =
{ { 0xff, 0x7f, 0xff, 0xff } };