Module Name: src Committed By: dholland Date: Wed Aug 12 08:27:24 UTC 2009
Modified Files: src/games/random: random.c Log Message: sprinkle static To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/games/random/random.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/random/random.c diff -u src/games/random/random.c:1.13 src/games/random/random.c:1.14 --- src/games/random/random.c:1.13 Mon Jul 20 05:33:35 2009 +++ src/games/random/random.c Wed Aug 12 08:27:24 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: random.c,v 1.13 2009/07/20 05:33:35 dholland Exp $ */ +/* $NetBSD: random.c,v 1.14 2009/08/12 08:27:24 dholland Exp $ */ /* * Copyright (c) 1994 @@ -42,7 +42,7 @@ #if 0 static char sccsid[] = "@(#)random.c 8.6 (Berkeley) 6/1/94"; #else -__RCSID("$NetBSD: random.c,v 1.13 2009/07/20 05:33:35 dholland Exp $"); +__RCSID("$NetBSD: random.c,v 1.14 2009/08/12 08:27:24 dholland Exp $"); #endif #endif /* not lint */ @@ -57,7 +57,7 @@ #include <unistd.h> #include <limits.h> -void usage(void) __dead; +static void usage(void) __dead; int main(int argc, char *argv[]) @@ -143,7 +143,7 @@ return 0; } -void +static void usage(void) {