Module Name:    src
Committed By:   dholland
Date:           Wed Aug 12 08:11:37 UTC 2009

Modified Files:
        src/games/morse: morse.c

Log Message:
sprinkle static


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/games/morse/morse.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/morse/morse.c
diff -u src/games/morse/morse.c:1.15 src/games/morse/morse.c:1.16
--- src/games/morse/morse.c:1.15	Sun Jul 20 01:03:21 2008
+++ src/games/morse/morse.c	Wed Aug 12 08:11:37 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: morse.c,v 1.15 2008/07/20 01:03:21 lukem Exp $	*/
+/*	$NetBSD: morse.c,v 1.16 2009/08/12 08:11:37 dholland Exp $	*/
 
 /*
  * Copyright (c) 1988, 1993
@@ -39,7 +39,7 @@
 #if 0
 static char sccsid[] = "@(#)morse.c	8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: morse.c,v 1.15 2008/07/20 01:03:21 lukem Exp $");
+__RCSID("$NetBSD: morse.c,v 1.16 2009/08/12 08:11:37 dholland Exp $");
 #endif
 #endif /* not lint */
 
@@ -91,7 +91,7 @@
 	"--..",
 };
 
-const struct punc {
+static const struct punc {
 	char c;
 	const char *morse;
 } other[] = {
@@ -111,9 +111,9 @@
 };
 
 int	main(int, char *[]);
-void	morse(int);
-void	decode(const char *);
-void	show(const char *);
+static void morse(int);
+static void decode(const char *);
+static void show(const char *);
 
 static int sflag;
 static int dflag;

Reply via email to