239873daa1
This package contains the executables for the teTeX installation as well as other files that were created when generating the binaries: info files, format files and manual pages.
22 lines
847 B
Text
22 lines
847 B
Text
$NetBSD: patch-af,v 1.1.1.1 2003/12/24 12:57:30 jmmv Exp $
|
|
|
|
--- texk/ps2pkm/arith.c.orig Sat Jan 24 23:11:27 1998
|
|
+++ texk/ps2pkm/arith.c Thu Sep 30 13:33:46 1999
|
|
@@ -203,7 +203,7 @@
|
|
divisor >>= 1;
|
|
|
|
if ((u1u2 >> (LONGSIZE - shift)) != 0 && shift != 0)
|
|
- abort("DLdiv: dividend too large");
|
|
+ t1_abort("DLdiv: dividend too large");
|
|
u1u2 = (u1u2 << shift) + ((shift == 0) ? 0 : u3u4 >> (LONGSIZE - shift));
|
|
u3u4 <<= shift;
|
|
|
|
@@ -266,7 +266,7 @@
|
|
*/
|
|
u1u2 = t;
|
|
if (HIGHDIGIT(u1u2) != 0)
|
|
- abort("divide algorithm error");
|
|
+ t1_abort("divide algorithm error");
|
|
u1u2 = ASSEMBLE(u1u2, LOWDIGIT(u3));
|
|
u3 = LOWDIGIT(u3u4);
|
|
q3q4 = ASSEMBLE(q3q4, qhat);
|