summaryrefslogtreecommitdiffstats
path: root/games/robots
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/robots
parentbeffd26bc80a987a3bdba59f0b211e2cfbb132ad (diff)
downloadFreeBSD-src-002f48507805c24a9a5019679ed0b1f2e3e258de.zip
FreeBSD-src-002f48507805c24a9a5019679ed0b1f2e3e258de.tar.gz
copyright/sccsid/rcsid cleanup.
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 28c7bd7..07a8ce0 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 09721ad..894185c 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 43bf89b..5ba6466 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 0be8409..837d608 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 06e908e..4aca2f5 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 6c274b2..fe18ed6 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 560a1b4..21bf0ba 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 ee33190..6361d9b 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 8f79499..bc6590c 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 933d765..13be7ca 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 35e6167..21fadf5 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"
OpenPOWER on IntegriCloud