summaryrefslogtreecommitdiffstats
path: root/atc
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1993-08-01 18:49:50 +0000
committermycroft <mycroft@NetBSD.org>1993-08-01 18:49:50 +0000
commit462fca95471224f85b85be911e72faee16cd1597 (patch)
treea0e4c1c096d66e8908adab57224bf19bd7f94e63 /atc
parent1639abc312beea68f4391a202db74ef7bdd5a494 (diff)
downloadbsdgames-darwin-462fca95471224f85b85be911e72faee16cd1597.tar.gz
bsdgames-darwin-462fca95471224f85b85be911e72faee16cd1597.tar.zst
bsdgames-darwin-462fca95471224f85b85be911e72faee16cd1597.zip
Add RCS identifiers.
Diffstat (limited to 'atc')
-rw-r--r--atc/def.h3
-rw-r--r--atc/extern.c3
-rw-r--r--atc/extern.h3
-rw-r--r--atc/grammar.y3
-rw-r--r--atc/graphics.c3
-rw-r--r--atc/include.h3
-rw-r--r--atc/input.c3
-rw-r--r--atc/lex.l3
-rw-r--r--atc/list.c3
-rw-r--r--atc/log.c3
-rw-r--r--atc/main.c3
-rw-r--r--atc/pathnames.h3
-rw-r--r--atc/struct.h3
-rw-r--r--atc/tunable.c3
-rw-r--r--atc/tunable.h3
-rw-r--r--atc/update.c3
16 files changed, 32 insertions, 16 deletions
diff --git a/atc/def.h b/atc/def.h
index 257cdb41..eb3dae10 100644
--- a/atc/def.h
+++ b/atc/def.h
@@ -33,7 +33,8 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * @(#)def.h 5.2 (Berkeley) 4/30/90
+ * from: @(#)def.h 5.2 (Berkeley) 4/30/90
+ * $Id: def.h,v 1.2 1993/08/01 18:57:17 mycroft Exp $
*/
/*
diff --git a/atc/extern.c b/atc/extern.c
index a69252f3..2d89f58c 100644
--- a/atc/extern.c
+++ b/atc/extern.c
@@ -44,7 +44,8 @@
*/
#ifndef lint
-static char sccsid[] = "@(#)extern.c 5.4 (Berkeley) 10/30/90";
+/*static char sccsid[] = "from: @(#)extern.c 5.4 (Berkeley) 10/30/90";*/
+static char rcsid[] = "$Id: extern.c,v 1.2 1993/08/01 18:57:11 mycroft Exp $";
#endif /* not lint */
#include "include.h"
diff --git a/atc/extern.h b/atc/extern.h
index 950dbb40..5d5f632c 100644
--- a/atc/extern.h
+++ b/atc/extern.h
@@ -33,7 +33,8 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * @(#)extern.h 5.4 (Berkeley) 10/30/90
+ * from: @(#)extern.h 5.4 (Berkeley) 10/30/90
+ * $Id: extern.h,v 1.2 1993/08/01 18:57:16 mycroft Exp $
*/
/*
diff --git a/atc/grammar.y b/atc/grammar.y
index a59a3820..d4a31d33 100644
--- a/atc/grammar.y
+++ b/atc/grammar.y
@@ -62,7 +62,8 @@
#include "include.h"
#ifndef lint
-static char sccsid[] = "@(#)grammar.y 5.2 (Berkeley) 4/30/90";
+/*static char sccsid[] = "from: @(#)grammar.y 5.2 (Berkeley) 4/30/90";*/
+static char rcsid[] = "$Id: grammar.y,v 1.2 1993/08/01 18:57:12 mycroft Exp $";
#endif /* not lint */
int errors = 0;
diff --git a/atc/graphics.c b/atc/graphics.c
index 1d7d39d8..6565e85c 100644
--- a/atc/graphics.c
+++ b/atc/graphics.c
@@ -44,7 +44,8 @@
*/
#ifndef lint
-static char sccsid[] = "@(#)graphics.c 5.3 (Berkeley) 10/30/90";
+/*static char sccsid[] = "from: @(#)graphics.c 5.3 (Berkeley) 10/30/90";*/
+static char rcsid[] = "$Id: graphics.c,v 1.2 1993/08/01 18:57:09 mycroft Exp $";
#endif /* not lint */
#include "include.h"
diff --git a/atc/include.h b/atc/include.h
index aa77562f..a8cbfb18 100644
--- a/atc/include.h
+++ b/atc/include.h
@@ -33,7 +33,8 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * @(#)include.h 5.3 (Berkeley) 4/30/90
+ * from: @(#)include.h 5.3 (Berkeley) 4/30/90
+ * $Id: include.h,v 1.2 1993/08/01 18:57:16 mycroft Exp $
*/
/*
diff --git a/atc/input.c b/atc/input.c
index 693a7a3a..f4a9ee07 100644
--- a/atc/input.c
+++ b/atc/input.c
@@ -44,7 +44,8 @@
*/
#ifndef lint
-static char sccsid[] = "@(#)input.c 5.4 (Berkeley) 4/30/90";
+/*static char sccsid[] = "from: @(#)input.c 5.4 (Berkeley) 4/30/90";*/
+static char rcsid[] = "$Id: input.c,v 1.2 1993/08/01 18:57:08 mycroft Exp $";
#endif not lint
#include "include.h"
diff --git a/atc/lex.l b/atc/lex.l
index 65e0ad54..325b3e68 100644
--- a/atc/lex.l
+++ b/atc/lex.l
@@ -45,7 +45,8 @@
*/
#ifndef lint
-static char sccsid[] = "@(#)lex.l 5.2 (Berkeley) 4/30/90";
+/*static char sccsid[] = "from: @(#)lex.l 5.2 (Berkeley) 4/30/90";*/
+static char rcsid[] = "$Id: lex.l,v 1.2 1993/08/01 18:57:07 mycroft Exp $";
#endif /* not lint */
#include "y.tab.h"
diff --git a/atc/list.c b/atc/list.c
index 8da9da2f..8827bade 100644
--- a/atc/list.c
+++ b/atc/list.c
@@ -44,7 +44,8 @@
*/
#ifndef lint
-static char sccsid[] = "@(#)list.c 5.2 (Berkeley) 4/30/90";
+/*static char sccsid[] = "from: @(#)list.c 5.2 (Berkeley) 4/30/90";*/
+static char rcsid[] = "$Id: list.c,v 1.2 1993/08/01 18:57:05 mycroft Exp $";
#endif /* not lint */
#include "include.h"
diff --git a/atc/log.c b/atc/log.c
index 5872583f..e9ea4309 100644
--- a/atc/log.c
+++ b/atc/log.c
@@ -44,7 +44,8 @@
*/
#ifndef lint
-static char sccsid[] = "@(#)log.c 5.7 (Berkeley) 10/30/90";
+/*static char sccsid[] = "from: @(#)log.c 5.7 (Berkeley) 10/30/90";*/
+static char rcsid[] = "$Id: log.c,v 1.2 1993/08/01 18:57:06 mycroft Exp $";
#endif not lint
#include "include.h"
diff --git a/atc/main.c b/atc/main.c
index e4ce3d0f..0910da90 100644
--- a/atc/main.c
+++ b/atc/main.c
@@ -50,7 +50,8 @@ char copyright[] =
#endif /* not lint */
#ifndef lint
-static char sccsid[] = "@(#)main.c 5.4 (Berkeley) 3/5/91";
+/*static char sccsid[] = "from: @(#)main.c 5.4 (Berkeley) 3/5/91";*/
+static char rcsid[] = "$Id: main.c,v 1.2 1993/08/01 18:57:04 mycroft Exp $";
#endif /* not lint */
#include "include.h"
diff --git a/atc/pathnames.h b/atc/pathnames.h
index 72aae534..796e5c78 100644
--- a/atc/pathnames.h
+++ b/atc/pathnames.h
@@ -30,7 +30,8 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * @(#)pathnames.h 5.4 (Berkeley) 4/30/90
+ * from: @(#)pathnames.h 5.4 (Berkeley) 4/30/90
+ * $Id: pathnames.h,v 1.2 1993/08/01 18:57:15 mycroft Exp $
*/
#include <paths.h>
diff --git a/atc/struct.h b/atc/struct.h
index 3a5ab490..2cde703c 100644
--- a/atc/struct.h
+++ b/atc/struct.h
@@ -33,7 +33,8 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * @(#)struct.h 5.2 (Berkeley) 4/30/90
+ * from: @(#)struct.h 5.2 (Berkeley) 4/30/90
+ * $Id: struct.h,v 1.2 1993/08/01 18:57:14 mycroft Exp $
*/
/*
diff --git a/atc/tunable.c b/atc/tunable.c
index b6eb4559..d2eb3e2d 100644
--- a/atc/tunable.c
+++ b/atc/tunable.c
@@ -44,7 +44,8 @@
*/
#ifndef lint
-static char sccsid[] = "@(#)tunable.c 5.4 (Berkeley) 4/30/90";
+/*static char sccsid[] = "from: @(#)tunable.c 5.4 (Berkeley) 4/30/90";*/
+static char rcsid[] = "$Id: tunable.c,v 1.2 1993/08/01 18:57:03 mycroft Exp $";
#endif /* not lint */
/*
diff --git a/atc/tunable.h b/atc/tunable.h
index 8ae00b02..44e43855 100644
--- a/atc/tunable.h
+++ b/atc/tunable.h
@@ -33,7 +33,8 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * @(#)tunable.h 5.3 (Berkeley) 4/30/90
+ * from: @(#)tunable.h 5.3 (Berkeley) 4/30/90
+ * $Id: tunable.h,v 1.2 1993/08/01 18:57:13 mycroft Exp $
*/
/*
diff --git a/atc/update.c b/atc/update.c
index 4e8a4edb..b5feab5f 100644
--- a/atc/update.c
+++ b/atc/update.c
@@ -44,7 +44,8 @@
*/
#ifndef lint
-static char sccsid[] = "@(#)update.c 5.5 (Berkeley) 10/30/90";
+/*static char sccsid[] = "from: @(#)update.c 5.5 (Berkeley) 10/30/90";*/
+static char rcsid[] = "$Id: update.c,v 1.2 1993/08/01 18:57:02 mycroft Exp $";
#endif not lint
#include "include.h"