<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">diff -Naurp colo-1.22.orig/stage2/src/heap.c colo-1.22/stage2/src/heap.c
--- colo-1.22.orig/stage2/src/heap.c	2006-01-22 10:26:56.000000000 -0500
+++ colo-1.22/stage2/src/heap.c	2019-10-20 23:20:17.167266445 -0400
@@ -25,16 +25,16 @@ static size_t next_size;
 void heap_reset(void)
 {
 	extern char __text;
-	void *restrict;
+	void *restrict2;
 
 	assert(!((unsigned long) &amp;__text &amp; 15));
 
 	free_lo = KSEG0(0);
 	free_hi = KSEG0(&amp;__text) - (32 &lt;&lt; 10);			// XXX
 
-	restrict = KSEG0(ram_restrict) - (16 &lt;&lt; 10);	// XXX
-	if(free_hi &gt; restrict)
-		free_hi = restrict;
+	restrict2 = KSEG0(ram_restrict) - (16 &lt;&lt; 10);	// XXX
+	if(free_hi &gt; restrict2)
+		free_hi = restrict2;
 
 	image_size = 0;
 	image_size_mark = 0;
</pre></body></html>