added rcsid
authorsater <none@none>
Sat, 19 May 1984 11:42:19 +0000 (11:42 +0000)
committersater <none@none>
Sat, 19 May 1984 11:42:19 +0000 (11:42 +0000)
21 files changed:
mach/proto/cg/assert.h
mach/proto/cg/data.h
mach/proto/cg/equiv.c
mach/proto/cg/equiv.h
mach/proto/cg/extern.h
mach/proto/cg/glosym.c
mach/proto/cg/glosym.h
mach/proto/cg/main.c
mach/proto/cg/move.c
mach/proto/cg/nextem.c
mach/proto/cg/param.h
mach/proto/cg/reg.c
mach/proto/cg/regvar.c
mach/proto/cg/regvar.h
mach/proto/cg/result.h
mach/proto/cg/salloc.c
mach/proto/cg/state.c
mach/proto/cg/state.h
mach/proto/cg/subr.c
mach/proto/cg/types.h
mach/proto/cg/var.c

index 156ee4b..3cc93b8 100644 (file)
@@ -1,3 +1,5 @@
+/* $Header$ */
+
 #ifndef NDEBUG
 #define assert(x) if(!(x)) badassertion("x",__FILE__,__LINE__)
 #else
index e9cbf11..ecfe7f6 100644 (file)
@@ -1,3 +1,5 @@
+/* $Header$ */
+
 typedef struct {
        int     t_token;        /* kind of token, -1 for register */
        union {
index 3af0a34..0e677d3 100644 (file)
@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "assert.h"
 #include "equiv.h"
 #include "param.h"
index ee85973..f1dc6c8 100644 (file)
@@ -1,3 +1,5 @@
+/* $Header$ */
+
 #define MAXCREG 4
 
 struct perm {
index 5b866cf..5e84bf5 100644 (file)
@@ -1,3 +1,5 @@
+/* $Header$ */
+
 extern int maxply;                      /* amount of lookahead allowed */
 extern int stackheight;                 /* # of tokens on fakestack */
 extern token_t fakestack[];             /* fakestack itself */
index cc2ca43..cf8f029 100644 (file)
@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "param.h"
 #include "tables.h"
 #include "types.h"
index c68fe54..7fb4c7c 100644 (file)
@@ -1,3 +1,5 @@
+/* $Header$ */
+
 typedef struct glosym {
        struct glosym *gl_next;
        string         gl_name;
index 0821609..08d5c46 100644 (file)
@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "param.h"
 
 /*
index 320f5a3..b74e550 100644 (file)
@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "assert.h"
 #include "param.h"
 #include "tables.h"
index d61c633..4aab43f 100644 (file)
@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include <em_spec.h>
 #include <em_flag.h>
 #include "assert.h"
index c456739..2432601 100644 (file)
@@ -1,3 +1,5 @@
+/* $Header$ */
+
 #define BMASK 0377
 #define BSHIFT 8
 
index 7190f32..0e10ab8 100644 (file)
@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "assert.h"
 #include "param.h"
 #include "tables.h"
index 0bc1980..6be7549 100644 (file)
@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "assert.h"
 #include "param.h"
 #include "tables.h"
index b6bd457..716a68f 100644 (file)
@@ -1,3 +1,5 @@
+/* $Header$ */
+
 struct regvar {
        struct regvar  *rv_next;
        long            rv_off;
index 4fd6e28..e4fa629 100644 (file)
@@ -1,3 +1,5 @@
+/* $Header$ */
+
 struct result {
        int     e_typ;          /* EV_INT,EV_REG,EV_STR */
        union {
index c4abef1..0543c96 100644 (file)
@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "assert.h"
 #include "param.h"
 #include "tables.h"
index 5f4eb69..6ba61c5 100644 (file)
@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "assert.h"
 #include "param.h"
 #include "tables.h"
index 10fe09c..8204169 100644 (file)
@@ -1,3 +1,5 @@
+/* $Header$ */
+
 #define STONSTACK      /* if defined state is saved in stackframe */
 
 typedef struct state {
index 85963c3..90f0add 100644 (file)
@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "assert.h"
 #include <stdio.h>
 #include "param.h"
index 5a93f5d..2c15ac0 100644 (file)
@@ -1,3 +1,5 @@
+/* $Header$ */
+
 #ifndef EM_WSIZE
 EM_WSIZE should be defined at this point
 #endif
index 0c619c1..48de9ba 100644 (file)
@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "param.h"
 #include "tables.h"
 #include "types.h"