aboutsummaryrefslogtreecommitdiff
path: root/games/robots
diff options
context:
space:
mode:
authorBill Fumerola <billf@FreeBSD.org>1999-11-30 03:50:02 +0000
committerBill Fumerola <billf@FreeBSD.org>1999-11-30 03:50:02 +0000
commit7b216475bfdc24758a850dba744e947fc6173e68 (patch)
tree3ae574978e74559dfce75bd93019aa6294c63377 /games/robots
parent4805de8700a2ad81e00b56a3d8089669d4982283 (diff)
downloadsrc-7b216475bfdc24758a850dba744e947fc6173e68.tar.gz
src-7b216475bfdc24758a850dba744e947fc6173e68.zip
copyright/sccsid/rcsid cleanup.
Notes
Notes: svn path=/head/; revision=53920
Diffstat (limited to 'games/robots')
-rw-r--r--games/robots/extern.c4
-rw-r--r--games/robots/flush_in.c4
-rw-r--r--games/robots/init_field.c6
-rw-r--r--games/robots/main.c8
-rw-r--r--games/robots/make_level.c6
-rw-r--r--games/robots/move.c6
-rw-r--r--games/robots/move_robs.c6
-rw-r--r--games/robots/play_level.c6
-rw-r--r--games/robots/query.c6
-rw-r--r--games/robots/rnd_pos.c6
-rw-r--r--games/robots/score.c6
11 files changed, 45 insertions, 19 deletions
diff --git a/games/robots/extern.c b/games/robots/extern.c
index 28c7bd7c68c1..07a8ce0bfcb8 100644
--- a/games/robots/extern.c
+++ b/games/robots/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 "robots.h"
diff --git a/games/robots/flush_in.c b/games/robots/flush_in.c
index 09721adfc3a9..894185c85975 100644
--- a/games/robots/flush_in.c
+++ b/games/robots/flush_in.c
@@ -32,7 +32,11 @@
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)flush_in.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include <curses.h>
diff --git a/games/robots/init_field.c b/games/robots/init_field.c
index 43bf89beebbd..5ba646649707 100644
--- a/games/robots/init_field.c
+++ b/games/robots/init_field.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[] = "@(#)init_field.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <string.h>
diff --git a/games/robots/main.c b/games/robots/main.c
index 0be84098ead2..837d608eff31 100644
--- a/games/robots/main.c
+++ b/games/robots/main.c
@@ -29,18 +29,20 @@
* 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
-static char copyright[] =
+static const char copyright[] =
"@(#) Copyright (c) 1980, 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 "robots.h"
diff --git a/games/robots/make_level.c b/games/robots/make_level.c
index 06e908e1445f..4aca2f584a05 100644
--- a/games/robots/make_level.c
+++ b/games/robots/make_level.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[] = "@(#)make_level.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "robots.h"
diff --git a/games/robots/move.c b/games/robots/move.c
index 6c274b27ecea..fe18ed61567c 100644
--- a/games/robots/move.c
+++ b/games/robots/move.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[] = "@(#)move.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <sys/ttydefaults.h>
diff --git a/games/robots/move_robs.c b/games/robots/move_robs.c
index 560a1b4fcb8c..21bf0ba2150c 100644
--- a/games/robots/move_robs.c
+++ b/games/robots/move_robs.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[] = "@(#)move_robs.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "robots.h"
diff --git a/games/robots/play_level.c b/games/robots/play_level.c
index ee33190230a9..6361d9b580a5 100644
--- a/games/robots/play_level.c
+++ b/games/robots/play_level.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[] = "@(#)play_level.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "robots.h"
diff --git a/games/robots/query.c b/games/robots/query.c
index 8f794997b490..bc6590cf6785 100644
--- a/games/robots/query.c
+++ b/games/robots/query.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[] = "@(#)query.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <string.h>
diff --git a/games/robots/rnd_pos.c b/games/robots/rnd_pos.c
index 933d765e8970..13be7cac90ee 100644
--- a/games/robots/rnd_pos.c
+++ b/games/robots/rnd_pos.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[] = "@(#)rnd_pos.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include <stdlib.h>
diff --git a/games/robots/score.c b/games/robots/score.c
index 35e6167ba0dc..21fadf5f1c1a 100644
--- a/games/robots/score.c
+++ b/games/robots/score.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[] = "@(#)score.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "robots.h"