Rev | Line | |
---|
[9] | 1 | /*
|
---|
| 2 | (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
---|
| 3 | See the copyright notice in the ACK home directory, in the file "Copyright".
|
---|
| 4 | */
|
---|
| 5 |
|
---|
| 6 | /* $Header: /cvsup/minix/src/lib/ack/float/FP_trap.h,v 1.1 2005/10/10 15:27:42 beng Exp $ */
|
---|
| 7 |
|
---|
| 8 | /*
|
---|
| 9 | include file for floating point package
|
---|
| 10 | */
|
---|
| 11 |
|
---|
| 12 | /* EM TRAPS */
|
---|
| 13 |
|
---|
| 14 | #define EIOVFL 3 /* Integer Overflow */
|
---|
| 15 | #define EFOVFL 4 /* Floating Overflow */
|
---|
| 16 | #define EFUNFL 5 /* Floating Underflow */
|
---|
| 17 | #define EIDIVZ 6 /* Integer Divide by 0 */
|
---|
| 18 | #define EFDIVZ 7 /* Floating Divide by 0.0 */
|
---|
| 19 | #define EIUND 8 /* Integer Undefined Number */
|
---|
| 20 | #define EFUND 9 /* Floating Undefined Number */
|
---|
| 21 | #define ECONV 10 /* Conversion Error */
|
---|
| 22 | # define trap(x) _fptrp(x)
|
---|
Note:
See
TracBrowser
for help on using the repository browser.