<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Fix old prototypes.

--- ghc-8.6.5/utils/hp2ps/Utilities.c	2018-06-12 21:33:32.000000000 +0100
+++ ghc-8.6.5/utils/hp2ps/Utilities.c	2025-07-07 12:11:44.063517560 +0100
@@ -1,10 +1,9 @@
 #include "Main.h"
 #include &lt;stdio.h&gt;
 #include &lt;string.h&gt;
+#include &lt;stdlib.h&gt;
 #include "Error.h"
 
-extern void* malloc();
-
 char*
 Basename(char *name)
 {
@@ -89,7 +88,6 @@
 xrealloc(void *p, size_t n)
 {
     void *r;
-    extern void *realloc();
 
     r = realloc(p, n);
     if (!r) {
</pre></body></html>