aboutsummaryrefslogtreecommitdiffstats
path: root/games/falconseye/files
diff options
context:
space:
mode:
authored <ed@FreeBSD.org>2016-07-31 17:41:12 +0800
committered <ed@FreeBSD.org>2016-07-31 17:41:12 +0800
commite12e8788297ea6c946b8ee839ea952b8445731a7 (patch)
tree30b54463e6a915397492eac4b1632a2a39b729c4 /games/falconseye/files
parent59d26c653328e608bfc426d3a4d46cdf3a3e1131 (diff)
downloadfreebsd-ports-gnome-e12e8788297ea6c946b8ee839ea952b8445731a7.tar.gz
freebsd-ports-gnome-e12e8788297ea6c946b8ee839ea952b8445731a7.tar.zst
freebsd-ports-gnome-e12e8788297ea6c946b8ee839ea952b8445731a7.zip
Don't let the Nethack ports declare srandom() themselves.
As the prototype of srandom() has changed, be sure to no longer declare the prototype of this function ourselves. Instead, simply pull in the <stdlib.h> header that declares this function. Reported by: antoine@ Reviewed by: glewis@ Differential Revision: https://reviews.freebsd.org/D7378
Diffstat (limited to 'games/falconseye/files')
-rw-r--r--games/falconseye/files/patch-include_system_h2
1 files changed, 1 insertions, 1 deletions
diff --git a/games/falconseye/files/patch-include_system_h b/games/falconseye/files/patch-include_system_h
index 45c67123a536..06f095d07c9e 100644
--- a/games/falconseye/files/patch-include_system_h
+++ b/games/falconseye/files/patch-include_system_h
@@ -5,7 +5,7 @@
# endif
# if !defined(SUNOS4) || defined(RANDOM)
-E void FDECL(srandom, (unsigned int));
-+E void FDECL(srandom, (unsigned long));
++#include <stdlib.h> /* srandom() differs between versions of FreeBSD. */
# else
# if !defined(bsdi) && !defined(__FreeBSD__)
E int FDECL(srandom, (unsigned int));