freebsd-ports/games/xchomp/files/patch-contact.c
Martin Wilke 5eee5a30c7 - Update MASTER_SITES
- Fix build with clang
- Add MAKE_JOBS_SAFE

PR:		175572
Submitted by:	Ports Fury
2013-02-04 14:30:02 +00:00

29 lines
572 B
C

--- contact.c.orig
+++ contact.c
@@ -17,7 +17,7 @@
* with which the player collided. In this case, it doesn't matter.
*/
/*ARGSUSED*/
-die(dummy)
+void die(dummy)
int dummy;
{
register int xx = pac_x, yy = pac_y, i, dx, dy;
@@ -116,7 +116,7 @@
* of the eaten ghost, and then continues. The parameter is
* the array index of the eaten ghost.
*/
-eat(i)
+void eat(i)
int i;
{
register int xx = pac_x, yy = pac_y, j;
@@ -166,7 +166,7 @@
* The eyes are harmless; this is a no-op.
*/
/*ARGSUSED*/
-noop(dummy)
+void noop(dummy)
int dummy;
{
}