Module Name: src
Committed By: dholland
Date: Sat Mar 29 21:38:54 UTC 2014
Modified Files:
src/games/hunt/huntd: execute.c
Log Message:
be consistent about whether functions are static
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/games/hunt/huntd/execute.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/games/hunt/huntd/execute.c
diff -u src/games/hunt/huntd/execute.c:1.11 src/games/hunt/huntd/execute.c:1.12
--- src/games/hunt/huntd/execute.c:1.11 Sat Mar 29 19:41:10 2014
+++ src/games/hunt/huntd/execute.c Sat Mar 29 21:38:54 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: execute.c,v 1.11 2014/03/29 19:41:10 dholland Exp $ */
+/* $NetBSD: execute.c,v 1.12 2014/03/29 21:38:54 dholland Exp $ */
/*
* Copyright (c) 1983-2003, Regents of the University of California.
* All rights reserved.
@@ -32,7 +32,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: execute.c,v 1.11 2014/03/29 19:41:10 dholland Exp $");
+__RCSID("$NetBSD: execute.c,v 1.12 2014/03/29 21:38:54 dholland Exp $");
#endif /* not lint */
#include <stdlib.h>
@@ -550,7 +550,7 @@ scan(PLAYER *pp)
* pickup:
* check whether the object blew up or whether he picked it up
*/
-void
+static void
pickup(PLAYER *pp, int y, int x, int prob, int obj)
{
int req;