Module Name: src Committed By: dholland Date: Sat Mar 29 22:15:13 UTC 2014
Modified Files: src/games/hunt/hunt: hunt.c Log Message: be consistent about whether functions are static To generate a diff of this commit: cvs rdiff -u -r1.46 -r1.47 src/games/hunt/hunt/hunt.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/hunt/hunt.c diff -u src/games/hunt/hunt/hunt.c:1.46 src/games/hunt/hunt/hunt.c:1.47 --- src/games/hunt/hunt/hunt.c:1.46 Sat Mar 29 22:11:19 2014 +++ src/games/hunt/hunt/hunt.c Sat Mar 29 22:15:13 2014 @@ -1,4 +1,4 @@ -/* $NetBSD: hunt.c,v 1.46 2014/03/29 22:11:19 dholland Exp $ */ +/* $NetBSD: hunt.c,v 1.47 2014/03/29 22:15:13 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: hunt.c,v 1.46 2014/03/29 22:11:19 dholland Exp $"); +__RCSID("$NetBSD: hunt.c,v 1.47 2014/03/29 22:15:13 dholland Exp $"); #endif /* not lint */ #include <sys/param.h> @@ -380,7 +380,7 @@ broadcast_vec(int s /*socket*/, struct s return vec_cnt; } -SOCKET * +static SOCKET * list_drivers(void) { int option; @@ -772,7 +772,7 @@ fincurs(void) * Leave the game somewhat gracefully, restoring all current * tty stats, and print errno. */ -void +static void leave(int eval, const char *mesg) { int serrno = errno; @@ -786,7 +786,7 @@ leave(int eval, const char *mesg) * Leave the game somewhat gracefully, restoring all current * tty stats. */ -void +static void leavex(int eval, const char *mesg) { fincurs();