Module Name: src
Committed By: dholland
Date: Wed Aug 12 05:19:27 UTC 2009
Modified Files:
src/games/banner: banner.c
Log Message:
sprinkle static
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/games/banner/banner.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/banner/banner.c
diff -u src/games/banner/banner.c:1.17 src/games/banner/banner.c:1.18
--- src/games/banner/banner.c:1.17 Sun Jul 20 01:03:20 2008
+++ src/games/banner/banner.c Wed Aug 12 05:19:27 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: banner.c,v 1.17 2008/07/20 01:03:20 lukem Exp $ */
+/* $NetBSD: banner.c,v 1.18 2009/08/12 05:19:27 dholland Exp $ */
/*
* Copyright (c) 1980, 1993, 1994
@@ -39,7 +39,7 @@
#if 0
static char sccsid[] = "@(#)banner.c 8.4 (Berkeley) 4/29/95";
#else
-__RCSID("$NetBSD: banner.c,v 1.17 2008/07/20 01:03:20 lukem Exp $");
+__RCSID("$NetBSD: banner.c,v 1.18 2009/08/12 05:19:27 dholland Exp $");
#endif
#endif /* not lint */
@@ -60,7 +60,7 @@
#define NBYTES 9271
/* Pointers into data_table for each ASCII char */
-const int asc_ptr[NCHARS] = {
+static const int asc_ptr[NCHARS] = {
/* ^@ */ 0, 0, 0, 0, 0, 0, 0, 0,
/* ^H */ 0, 0, 0, 0, 0, 0, 0, 0,
/* ^P */ 0, 0, 0, 0, 0, 0, 0, 0,
@@ -87,7 +87,7 @@
* is the next elt in array) and goto second
* next element in array.
*/
-const unsigned char data_table[NBYTES] = {
+static const unsigned char data_table[NBYTES] = {
/* 0 1 2 3 4 5 6 7 8 9 */
/* 0 */ 129, 227, 130, 34, 6, 90, 19, 129, 32, 10,
/* 10 */ 74, 40, 129, 31, 12, 64, 53, 129, 30, 14,
@@ -1019,11 +1019,11 @@
/* 9270 */ 193
};
-char line[DWIDTH];
-char message[MAXMSG];
-char print[DWIDTH];
-int debug, i, j, linen, max, nchars, pc, term, trace, x, y;
-int width = DWIDTH; /* -w option: scrunch letters to 80 columns */
+static char line[DWIDTH];
+static char message[MAXMSG];
+static char print[DWIDTH];
+static int debug, i, j, linen, max, nchars, pc, term, trace, x, y;
+static int width = DWIDTH; /* -w option: scrunch letters to 80 columns */
static void
toolong(void)