summaryrefslogtreecommitdiffstats
path: root/rain
diff options
context:
space:
mode:
authorcgd <cgd@NetBSD.org>1995-04-22 08:19:45 +0000
committercgd <cgd@NetBSD.org>1995-04-22 08:19:45 +0000
commit91e8bf7c25f16721a2b11e84fe0d77ba69e81c84 (patch)
treea92e37c5c1d7f25f8baaf6a9c9b5e96412d46e6b /rain
parent14f259962a6ba5f002861e2490bca2db874f843b (diff)
downloadbsdgames-darwin-91e8bf7c25f16721a2b11e84fe0d77ba69e81c84.tar.gz
bsdgames-darwin-91e8bf7c25f16721a2b11e84fe0d77ba69e81c84.tar.zst
bsdgames-darwin-91e8bf7c25f16721a2b11e84fe0d77ba69e81c84.zip
clean up import. NetBSD RCS IDs
Diffstat (limited to 'rain')
-rw-r--r--rain/Makefile4
-rw-r--r--rain/rain.611
-rw-r--r--rain/rain.c23
3 files changed, 22 insertions, 16 deletions
diff --git a/rain/Makefile b/rain/Makefile
index 14b8514c..8cbbac53 100644
--- a/rain/Makefile
+++ b/rain/Makefile
@@ -1,5 +1,5 @@
-# from: @(#)Makefile 5.3 (Berkeley) 5/11/90
-# $Id: Makefile,v 1.5 1994/12/22 09:35:48 cgd Exp $
+# $NetBSD: Makefile,v 1.6 1995/04/22 08:23:28 cgd Exp $
+# @(#)Makefile 8.1 (Berkeley) 5/31/93
PROG= rain
MAN= rain.6
diff --git a/rain/rain.6 b/rain/rain.6
index c85910cb..55ed2337 100644
--- a/rain/rain.6
+++ b/rain/rain.6
@@ -1,5 +1,7 @@
-.\" Copyright (c) 1989 The Regents of the University of California.
-.\" All rights reserved.
+.\" $NetBSD: rain.6,v 1.4 1995/04/22 08:23:33 cgd Exp $
+.\"
+.\" Copyright (c) 1989, 1993
+.\" The Regents of the University of California. All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
@@ -29,10 +31,9 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)rain.6 6.3 (Berkeley) 6/23/90
-.\" $Id: rain.6,v 1.3 1993/08/05 01:47:01 jtc Exp $
+.\" @(#)rain.6 8.1 (Berkeley) 5/31/93
.\"
-.Dd June 23, 1990
+.Dd May 31, 1993
.Dt RAIN 6
.Os
.Sh NAME
diff --git a/rain/rain.c b/rain/rain.c
index 8ad61be2..0f01a6b1 100644
--- a/rain/rain.c
+++ b/rain/rain.c
@@ -1,6 +1,8 @@
+/* $NetBSD: rain.c,v 1.5 1995/04/22 08:23:37 cgd Exp $ */
+
/*
- * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1993
+ * The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -32,14 +34,17 @@
*/
#ifndef lint
-char copyright[] =
-"@(#) Copyright (c) 1980 Regents of the University of California.\n\
- All rights reserved.\n";
+static char copyright[] =
+"@(#) Copyright (c) 1980, 1993\n\
+ The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
-/*static char sccsid[] = "from: @(#)rain.c 5.6 (Berkeley) 2/28/91";*/
-static char rcsid[] = "$Id: rain.c,v 1.4 1994/04/05 23:35:16 deraadt Exp $";
+#if 0
+static char sccsid[] = "@(#)rain.c 8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: rain.c,v 1.5 1995/04/22 08:23:37 cgd Exp $";
+#endif
#endif /* not lint */
/*
@@ -250,9 +255,9 @@ onsig()
exit(0);
}
-static void
+int
fputchar(c)
- char c;
+ int c;
{
putchar(c);
}