arith.h revision 164051
1129202Scognet/*
2129202Scognet * MD header for contrib/gdtoa
3129202Scognet *
4129202Scognet * $FreeBSD: head/lib/libc/arm/arith.h 164051 2006-11-06 20:49:23Z cognet $
5129202Scognet */
6129202Scognet
7129202Scognet/*
8129202Scognet * NOTE: The definitions in this file must be correct or strtod(3) and
9129202Scognet * floating point formats in printf(3) will break!  The file can be
10129202Scognet * generated by running contrib/gdtoa/arithchk.c on the target
11129202Scognet * architecture.  See contrib/gdtoa/gdtoaimp.h for details.
12129202Scognet */
13129202Scognet
14164051Scognet#ifndef __ARMEB__
15129202Scognet#define IEEE_8087
16129202Scognet#define Arith_Kind_ASL 1
17129202Scognet#define Sudden_Underflow
18164051Scognet#else
19164051Scognet#define IEEE_MC68k
20164051Scognet#define Arith_Kind_ASL 2
21164051Scognet#endif
22