summaryrefslogtreecommitdiffstats
path: root/games/hangman
diff options
context:
space:
mode:
authorbillf <billf@FreeBSD.org>1999-11-30 03:50:02 +0000
committerbillf <billf@FreeBSD.org>1999-11-30 03:50:02 +0000
commit002f48507805c24a9a5019679ed0b1f2e3e258de (patch)
tree60a6a2ac5db6d7bb41d3d4f0b429d8f620a37c15 /games/hangman
parentbeffd26bc80a987a3bdba59f0b211e2cfbb132ad (diff)
downloadFreeBSD-src-002f48507805c24a9a5019679ed0b1f2e3e258de.zip
FreeBSD-src-002f48507805c24a9a5019679ed0b1f2e3e258de.tar.gz
copyright/sccsid/rcsid cleanup.
Diffstat (limited to 'games/hangman')
-rw-r--r--games/hangman/endgame.c6
-rw-r--r--games/hangman/extern.c4
-rw-r--r--games/hangman/getguess.c6
-rw-r--r--games/hangman/getword.c6
-rw-r--r--games/hangman/main.c6
-rw-r--r--games/hangman/playgame.c6
-rw-r--r--games/hangman/prdata.c6
-rw-r--r--games/hangman/prman.c6
-rw-r--r--games/hangman/prword.c4
-rw-r--r--games/hangman/setup.c6
10 files changed, 41 insertions, 15 deletions
diff --git a/games/hangman/endgame.c b/games/hangman/endgame.c
index 2839cce..4e13559 100644
--- a/games/hangman/endgame.c
+++ b/games/hangman/endgame.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)endgame.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "hangman.h"
diff --git a/games/hangman/extern.c b/games/hangman/extern.c
index ecc7155..5561adc 100644
--- a/games/hangman/extern.c
+++ b/games/hangman/extern.c
@@ -32,7 +32,11 @@
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)extern.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "hangman.h"
diff --git a/games/hangman/getguess.c b/games/hangman/getguess.c
index e25697e..a338e5c 100644
--- a/games/hangman/getguess.c
+++ b/games/hangman/getguess.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)getguess.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <sys/ttydefaults.h>
diff --git a/games/hangman/getword.c b/games/hangman/getword.c
index 0cd63d3..041c686 100644
--- a/games/hangman/getword.c
+++ b/games/hangman/getword.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)getword.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include "hangman.h"
diff --git a/games/hangman/main.c b/games/hangman/main.c
index cbf0272..1c48871 100644
--- a/games/hangman/main.c
+++ b/games/hangman/main.c
@@ -32,13 +32,17 @@
*/
#ifndef lint
-static char copyright[] =
+static const char copyright[] =
"@(#) Copyright (c) 1983, 1993\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
+#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "hangman.h"
diff --git a/games/hangman/playgame.c b/games/hangman/playgame.c
index 4d82ea4..0857a8c 100644
--- a/games/hangman/playgame.c
+++ b/games/hangman/playgame.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)playgame.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "hangman.h"
diff --git a/games/hangman/prdata.c b/games/hangman/prdata.c
index a59da6c..3cfe61e 100644
--- a/games/hangman/prdata.c
+++ b/games/hangman/prdata.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)prdata.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "hangman.h"
diff --git a/games/hangman/prman.c b/games/hangman/prman.c
index 6e38515..431d310 100644
--- a/games/hangman/prman.c
+++ b/games/hangman/prman.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)prman.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "hangman.h"
diff --git a/games/hangman/prword.c b/games/hangman/prword.c
index a24cea6..5841586 100644
--- a/games/hangman/prword.c
+++ b/games/hangman/prword.c
@@ -32,7 +32,11 @@
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)prword.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "hangman.h"
diff --git a/games/hangman/setup.c b/games/hangman/setup.c
index 3f9f767..b9cd644 100644
--- a/games/hangman/setup.c
+++ b/games/hangman/setup.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)setup.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include <stdlib.h>
OpenPOWER on IntegriCloud