freebsd-ports/games/spider/files/patch-ad
Stephen Montgomery-Smith 57bbb2c994 - Fix segfault on amd64.
- Bump portrevision.

PR:		ports/150287
Submitted by:	Pascal Stumpf <Pascal.Stumpf@cubes.de> and
		Shaun Amott <shaun@FreeBSD.org>
Approved by:	maho (mentor)
2011-07-06 05:18:35 +00:00

13 lines
292 B
Text

--- globals.h.orig 1991-09-28 17:46:20.000000000 +0000
+++ globals.h 2011-07-01 03:25:27.000000000 +0000
@@ -96,6 +96,10 @@
Bool can_get_help_files();
#endif
+#ifndef __FreeBSD__
extern char *malloc();
extern char *calloc();
extern char *realloc();
+#else
+#include <stdlib.h>
+#endif