home *** CD-ROM | disk | FTP | other *** search
-
- {
- These routines access the mathffp.library. As of version 1.0c
- of the compiler, you can do all this stuff with normal expressions in
- the language, but I left this here for compatibility.
- }
-
- function SPFix(f : real) : integer;
- External;
- function SPFloat(f : integer) : real;
- External;
- function SPCmp(f, r : real) : integer;
- External;
- function SPTst(f : real) : integer;
- External;
- function SPAbs(f : real) : real;
- External;
- function SPNeg(f : real) : real;
- External;
- function SPAdd(f, r : real) : real;
- External;
- function SPSub(f, r : real) : real;
- External;
- function SPMul(f, r : real) : real;
- External;
- function SPDiv(f, r : real) : real;
- External;
- function SPFloor(f : real) : real;
- External;
- function SPCeil(f : real) : real;
- External;
-