From a95a51410b28a4745d040fd6a08198c6476c7afc Mon Sep 17 00:00:00 2001 From: knu Date: Thu, 28 Mar 2002 12:09:08 +0000 Subject: Add a patch to fix the build on the Alpha. Reported by: beta --- devel/c4/files/patch-main.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 devel/c4/files/patch-main.c (limited to 'devel') diff --git a/devel/c4/files/patch-main.c b/devel/c4/files/patch-main.c new file mode 100644 index 000000000000..abe18a47c626 --- /dev/null +++ b/devel/c4/files/patch-main.c @@ -0,0 +1,18 @@ +--- main.c.orig Fri Feb 11 17:11:52 2000 ++++ main.c Thu Mar 28 21:05:27 2002 +@@ -62,7 +62,6 @@ + Alloc(unsigned int sz) + { + void * p; +- extern void * malloc(unsigned int); + + p = malloc(sz); + if (!p) +@@ -75,7 +74,6 @@ + ReAlloc(void * xp, unsigned int sz) + { + void * p; +- extern void * realloc(void *, unsigned int); + + p = realloc(xp, sz); + if (!p) -- cgit