00001 /* 00002 (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands. 00003 See the copyright notice in the ACK home directory, in the file "Copyright". 00004 */ 00005 00006 /* $Header: /opt/proj/minix/cvsroot/src/lib/ack/float/FP_trap.h,v 1.1 2005/10/10 15:27:42 beng Exp $ */ 00007 00008 /* 00009 include file for floating point package 00010 */ 00011 00012 /* EM TRAPS */ 00013 00014 #define EIOVFL 3 /* Integer Overflow */ 00015 #define EFOVFL 4 /* Floating Overflow */ 00016 #define EFUNFL 5 /* Floating Underflow */ 00017 #define EIDIVZ 6 /* Integer Divide by 0 */ 00018 #define EFDIVZ 7 /* Floating Divide by 0.0 */ 00019 #define EIUND 8 /* Integer Undefined Number */ 00020 #define EFUND 9 /* Floating Undefined Number */ 00021 #define ECONV 10 /* Conversion Error */ 00022 # define trap(x) _fptrp(x)
1.4.6