home *** CD-ROM | disk | FTP | other *** search
- /*********
- *
- * _TR_ITOD.C
- *
- * by Ralph Davis
- *
- * Placed in the public domain by Tom Rettig Associates, 10/22/1990.
- *
- *
- * C Syntax:
- *
- * double _tr_itod(n)
- * int n;
- *
- * Assembler Usage:
- *
- * MOV AX,<expN>
- * PUSH AX
- * CALL _TR_ITOD
- * ADD SP,2
- *
- * Returns 8-byte floating point number in AX:BX:CX:DX
- *
- *********/
-
- #include "trlib.h"
-
- double _tr_itod(n)
- int n;
- {
- return ((double) n);
- }
-
-