summaryrefslogtreecommitdiff
path: root/lang/newsqueak/patches/patch-squint_compile.c
blob: 26c0b759a16902af755dc3b4c6e5b1f178d9719e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$NetBSD: patch-squint_compile.c,v 1.1 2015/04/25 19:58:32 dholland Exp $

Avoid naming conflict with standard C.

--- squint/compile.c~	2000-02-11 17:04:43.000000000 +0000
+++ squint/compile.c
@@ -228,7 +228,7 @@ gen(Node *n, int retain)
 		case PRINT:
 			gen(n->l, 1);
 			printgen(n->l);
-			emit(Isprint);
+			emit(Isprint_);
 			if(!retain)
 				emit(Iprint);
 			return;