summaryrefslogtreecommitdiff
path: root/print/teTeX1-bin/patches/patch-af
blob: 6726c9ff68dfaf25876d265b6327ac3aae25a878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$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);