4 * Revision 1.1 2001/04/04 05:43:37 wang
5 * First commit: compiles on Linux, Amiga, Windows, Windows CE, generic gcc
7 * Revision 1.1 1998/07/02 17:18:00 bnv
15 /* ---------------- Lintdiv ---------------- */
17 Lintdiv( const PLstr to
, const PLstr A
, const PLstr B
)
23 if (b
== 0) Lerror(ERR_ARITH_OVERFLOW
,0);
25 LINT(*to
) = (long) (Lrdreal(A
) / b
);
26 LTYPE(*to
) = LINTEGER_TY
;
27 LLEN(*to
) = sizeof(long);