Cleanup and style(9) fixes. No functional change.

This commit is contained in:
Marcel Moolenaar 2003-08-11 21:25:19 +00:00
parent d10526a03b
commit 322d6e0236

View File

@ -37,15 +37,12 @@ typedef int fp_except_t;
#define FP_X_OFL IA64_FPSR_TRAP_OD /* overflow exception */
#define FP_X_UFL IA64_FPSR_TRAP_UD /* underflow exception */
#define FP_X_IMP IA64_FPSR_TRAP_ID /* imprecise(inexact) exception */
#if 0
#define FP_X_IOV 0 /* integer overflow XXX? */
#endif
typedef enum {
FP_RZ=0, /* round to zero (truncate) */
FP_RM=1, /* round toward negative infinity */
FP_RN=2, /* round to nearest representable number */
FP_RP=3 /* round toward positive infinity */
FP_RZ=0, /* round to zero (truncate) */
FP_RM=1, /* round toward negative infinity */
FP_RN=2, /* round to nearest representable number */
FP_RP=3 /* round toward positive infinity */
} fp_rnd_t;
#endif /* _MACHINE_IEEEFP_H_ */