Berkeley headers, SCCS id's
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 1 May 1990 12:24:24 +0000 (04:24 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 1 May 1990 12:24:24 +0000 (04:24 -0800)
SCCS-vsn: games/atc/atc.6 5.3
SCCS-vsn: games/atc/def.h 5.2
SCCS-vsn: games/atc/extern.c 5.3
SCCS-vsn: games/atc/extern.h 5.3
SCCS-vsn: games/atc/grammar.y 5.2
SCCS-vsn: games/atc/graphics.c 5.2
SCCS-vsn: games/atc/include.h 5.3
SCCS-vsn: games/atc/input.c 5.4
SCCS-vsn: games/atc/lex.l 5.2
SCCS-vsn: games/atc/list.c 5.2
SCCS-vsn: games/atc/log.c 5.6
SCCS-vsn: games/atc/main.c 5.3
SCCS-vsn: games/atc/pathnames.h 5.4
SCCS-vsn: games/atc/struct.h 5.2
SCCS-vsn: games/atc/tunable.c 5.4
SCCS-vsn: games/atc/tunable.h 5.3
SCCS-vsn: games/atc/update.c 5.4

17 files changed:
usr/src/games/atc/atc.6
usr/src/games/atc/def.h
usr/src/games/atc/extern.c
usr/src/games/atc/extern.h
usr/src/games/atc/grammar.y
usr/src/games/atc/graphics.c
usr/src/games/atc/include.h
usr/src/games/atc/input.c
usr/src/games/atc/lex.l
usr/src/games/atc/list.c
usr/src/games/atc/log.c
usr/src/games/atc/main.c
usr/src/games/atc/pathnames.h
usr/src/games/atc/struct.h
usr/src/games/atc/tunable.c
usr/src/games/atc/tunable.h
usr/src/games/atc/update.c

index e07a0f3..9d57177 100644 (file)
@@ -1,3 +1,13 @@
+.\" Copyright (c) 1990 The Regents of the University of California.
+.\" All rights reserved.
+.\"
+.\" This code is derived from software contributed to Berkeley by
+.\" Ed James.
+.\"
+.\" %sccs.include.redist.man%
+.\"
+.\"    @(#)atc.6       5.3 (Berkeley) %G%
+.\"
 .       \" XP - exdented paragraph
 .de XP
 .RT
 .       \" XP - exdented paragraph
 .de XP
 .RT
@@ -9,7 +19,7 @@
 ..
 .\" Copyright (c) 1986 Ed James. All rights reserved. 
 .\"
 ..
 .\" Copyright (c) 1986 Ed James. All rights reserved. 
 .\"
-.TH ATC 6 "January 1, 1986"
+.TH ATC 6 ""
 .UC
 .SH NAME
 atc \- air traffic controller game
 .UC
 .SH NAME
 atc \- air traffic controller game
index 9cc2749..ee3c43a 100644 (file)
@@ -1,3 +1,15 @@
+/*-
+ * Copyright (c) 1990 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Ed James.
+ *
+ * %sccs.include.redist.c%
+ *
+ *     @(#)def.h       5.2 (Berkeley) %G%
+ */
+
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
index 48f8860..d142191 100644 (file)
@@ -1,3 +1,13 @@
+/*-
+ * Copyright (c) 1990 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Ed James.
+ *
+ * %sccs.include.redist.c%
+ */
+
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
@@ -7,6 +17,10 @@
  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
  */
 
  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
  */
 
+#ifndef lint
+static char sccsid[] = "@(#)extern.c   5.3 (Berkeley) %G%";
+#endif /* not lint */
+
 #include "include.h"
 
 char           GAMES[] =       "Game_List";
 #include "include.h"
 
 char           GAMES[] =       "Game_List";
index 3511486..68c8d4b 100644 (file)
@@ -1,3 +1,15 @@
+/*-
+ * Copyright (c) 1990 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Ed James.
+ *
+ * %sccs.include.redist.c%
+ *
+ *     @(#)extern.h    5.3 (Berkeley) %G%
+ */
+
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
index 519bfd7..0b73def 100644 (file)
@@ -1,3 +1,13 @@
+/*-
+ * Copyright (c) 1990 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Ed James.
+ *
+ * %sccs.include.redist.c%
+ */
+
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
 %{
 #include "include.h"
 
 %{
 #include "include.h"
 
+#ifndef lint
+static char sccsid[] = "@(#)grammar.y  5.2 (Berkeley) %G%";
+#endif /* not lint */
+
 int    errors = 0;
 int    line = 1;
 %}
 int    errors = 0;
 int    line = 1;
 %}
index f655f89..727c0c3 100644 (file)
@@ -1,3 +1,13 @@
+/*-
+ * Copyright (c) 1990 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Ed James.
+ *
+ * %sccs.include.redist.c%
+ */
+
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
@@ -7,6 +17,10 @@
  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
  */
 
  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
  */
 
+#ifndef lint
+static char sccsid[] = "@(#)graphics.c 5.2 (Berkeley) %G%";
+#endif /* not lint */
+
 #include "include.h"
 #ifdef SYSV
 #include <errno.h>
 #include "include.h"
 #ifdef SYSV
 #include <errno.h>
index 0fa2f68..b60859a 100644 (file)
@@ -1,3 +1,15 @@
+/*-
+ * Copyright (c) 1990 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Ed James.
+ *
+ * %sccs.include.redist.c%
+ *
+ *     @(#)include.h   5.3 (Berkeley) %G%
+ */
+
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
index e60ead9..32d5693 100644 (file)
@@ -1,3 +1,13 @@
+/*-
+ * Copyright (c) 1990 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Ed James.
+ *
+ * %sccs.include.redist.c%
+ */
+
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
@@ -8,7 +18,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)input.c    5.3 (Berkeley) %G%";
+static char sccsid[] = "@(#)input.c    5.4 (Berkeley) %G%";
 #endif not lint
 
 #include "include.h"
 #endif not lint
 
 #include "include.h"
index dde6315..791e413 100644 (file)
@@ -1,4 +1,14 @@
 %{
 %{
+/*-
+ * Copyright (c) 1990 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Ed James.
+ *
+ * %sccs.include.redist.c%
+ */
+
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
@@ -8,8 +18,13 @@
  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
  */
 
  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
  */
 
+#ifndef lint
+static char sccsid[] = "@(#)lex.l      5.2 (Berkeley) %G%";
+#endif /* not lint */
+
 #include "y.tab.h"
 extern int     line;
 #include "y.tab.h"
 extern int     line;
+
 %}
 %%
 [0-9]+                 { yylval.ival = atoi(yytext);  return(ConstOp); }
 %}
 %%
 [0-9]+                 { yylval.ival = atoi(yytext);  return(ConstOp); }
index 5498e59..b13d1a4 100644 (file)
@@ -1,3 +1,13 @@
+/*-
+ * Copyright (c) 1990 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Ed James.
+ *
+ * %sccs.include.redist.c%
+ */
+
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
@@ -7,6 +17,10 @@
  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
  */
 
  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
  */
 
+#ifndef lint
+static char sccsid[] = "@(#)list.c     5.2 (Berkeley) %G%";
+#endif /* not lint */
+
 #include "include.h"
 
 PLANE  *
 #include "include.h"
 
 PLANE  *
index 91980a1..49a1306 100644 (file)
@@ -1,3 +1,13 @@
+/*-
+ * Copyright (c) 1990 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Ed James.
+ *
+ * %sccs.include.redist.c%
+ */
+
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
@@ -8,7 +18,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)log.c      5.5 (Berkeley) %G%";
+static char sccsid[] = "@(#)log.c      5.6 (Berkeley) %G%";
 #endif not lint
 
 #include "include.h"
 #endif not lint
 
 #include "include.h"
index 2a6244e..672b9bc 100644 (file)
@@ -1,3 +1,13 @@
+/*-
+ * Copyright (c) 1990 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Ed James.
+ *
+ * %sccs.include.redist.c%
+ */
+
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
@@ -7,6 +17,16 @@
  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
  */
 
  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
  */
 
+#ifndef lint
+char copyright[] =
+"@(#) Copyright (c) 1990 The Regents of the University of California.\n\
+ All rights reserved.\n";
+#endif /* not lint */
+
+#ifndef lint
+static char sccsid[] = "@(#)main.c     5.3 (Berkeley) %G%";
+#endif /* not lint */
+
 #include "include.h"
 #include "pathnames.h"
 
 #include "include.h"
 #include "pathnames.h"
 
index 1498564..552aea4 100644 (file)
@@ -1,20 +1,10 @@
-/*
- * Copyright (c) 1989 The Regents of the University of California.
+/*-
+ * Copyright (c) 1990 The Regents of the University of California.
  * All rights reserved.
  *
  * All rights reserved.
  *
- * Redistribution and use in source and binary forms are permitted
- * provided that the above copyright notice and this paragraph are
- * duplicated in all such forms and that any documentation,
- * advertising materials, and other materials related to such
- * distribution and use acknowledge that the software was developed
- * by the University of California, Berkeley.  The name of the
- * University may not be used to endorse or promote products derived
- * from this software without specific prior written permission.
- * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
- * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+ * %sccs.include.redist.c%
  *
  *
- *     @(#)pathnames.h 5.3 (Berkeley) %G%
+ *     @(#)pathnames.h 5.4 (Berkeley) %G%
  */
 
 #include <paths.h>
  */
 
 #include <paths.h>
index 1a02e08..cef3de2 100644 (file)
@@ -1,3 +1,15 @@
+/*-
+ * Copyright (c) 1990 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Ed James.
+ *
+ * %sccs.include.redist.c%
+ *
+ *     @(#)struct.h    5.2 (Berkeley) %G%
+ */
+
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
index 38e4246..e24eba3 100644 (file)
@@ -1,3 +1,13 @@
+/*-
+ * Copyright (c) 1990 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Ed James.
+ *
+ * %sccs.include.redist.c%
+ */
+
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
@@ -7,6 +17,10 @@
  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
  */
 
  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
  */
 
+#ifndef lint
+static char sccsid[] = "@(#)tunable.c  5.4 (Berkeley) %G%";
+#endif /* not lint */
+
 /*
  * NUM_SCORES - Number of scores that are kept track of.
  * Keep this greater than 0, but less than 100.
 /*
  * NUM_SCORES - Number of scores that are kept track of.
  * Keep this greater than 0, but less than 100.
index 7bda2cb..f26af87 100644 (file)
@@ -1,3 +1,15 @@
+/*-
+ * Copyright (c) 1990 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Ed James.
+ *
+ * %sccs.include.redist.c%
+ *
+ *     @(#)tunable.h   5.3 (Berkeley) %G%
+ */
+
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
index 18af6bd..2294b17 100644 (file)
@@ -1,3 +1,13 @@
+/*-
+ * Copyright (c) 1990 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Ed James.
+ *
+ * %sccs.include.redist.c%
+ */
+
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
 /*
  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
  *
@@ -8,7 +18,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)update.c   5.3 (Berkeley) %G%";
+static char sccsid[] = "@(#)update.c   5.4 (Berkeley) %G%";
 #endif not lint
 
 #include "include.h"
 #endif not lint
 
 #include "include.h"