home *** CD-ROM | disk | FTP | other *** search
- head 1.1;
- access;
- symbols
- version39-41:1.1;
- locks;
- comment @ * @;
-
-
- 1.1
- date 92.06.08.19.47.59; author mwild; state Exp;
- branches;
- next ;
-
-
- desc
- @initial checkin
- @
-
-
- 1.1
- log
- @Initial revision
- @
- text
- @#include "common.h"
-
- #include "limits.h"
-
- unsigned SItype
- __fixunsdfsi (a)
- double a;
- {
- if (a >= - (double) LONG_MIN)
- return (SItype) (a + LONG_MIN) - LONG_MIN;
- return (SItype) a;
- }
- @
-