source: trunk/minix/lib/float/FP_trap.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 705 bytes
Line 
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/float/FP_trap.h,v 1.1.1.1 2005/04/21 14:56:10 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.