2010-07-10 14:45:03 +00:00
|
|
|
/*
|
|
|
|
* MD header for contrib/gdtoa
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* NOTE: The definitions in this file must be correct or strtod(3) and
|
|
|
|
* floating point formats in printf(3) will break! The file can be
|
|
|
|
* generated by running contrib/gdtoa/arithchk.c on the target
|
|
|
|
* architecture. See contrib/gdtoa/gdtoaimp.h for details.
|
|
|
|
*/
|
|
|
|
|
2020-09-23 02:05:44 +00:00
|
|
|
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
|
|
|
|
#define IEEE_8087
|
|
|
|
#define Arith_Kind_ASL 1
|
|
|
|
#else
|
2010-07-10 14:45:03 +00:00
|
|
|
#define IEEE_MC68k
|
|
|
|
#define Arith_Kind_ASL 2
|
2020-09-23 02:05:44 +00:00
|
|
|
#endif
|
2019-12-13 20:30:26 +00:00
|
|
|
#define Long int
|
|
|
|
#define Intcast (int)(long)
|
2010-07-10 14:45:03 +00:00
|
|
|
#define Double_Align
|
2019-12-13 20:30:26 +00:00
|
|
|
#define X64_bit_pointers
|