Browse Source

added rcsid

sater 40 years ago
parent
commit
54e681c6cc

+ 2 - 0
mach/proto/cg/assert.h

@@ -1,3 +1,5 @@
+/* $Header$ */
+
 #ifndef NDEBUG
 #define assert(x) if(!(x)) badassertion("x",__FILE__,__LINE__)
 #else

+ 2 - 0
mach/proto/cg/data.h

@@ -1,3 +1,5 @@
+/* $Header$ */
+
 typedef struct {
 	int     t_token;        /* kind of token, -1 for register */
 	union {

+ 4 - 0
mach/proto/cg/equiv.c

@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "assert.h"
 #include "equiv.h"
 #include "param.h"

+ 2 - 0
mach/proto/cg/equiv.h

@@ -1,3 +1,5 @@
+/* $Header$ */
+
 #define MAXCREG 4
 
 struct perm {

+ 2 - 0
mach/proto/cg/extern.h

@@ -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 */

+ 4 - 0
mach/proto/cg/glosym.c

@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "param.h"
 #include "tables.h"
 #include "types.h"

+ 2 - 0
mach/proto/cg/glosym.h

@@ -1,3 +1,5 @@
+/* $Header$ */
+
 typedef struct glosym {
 	struct glosym *gl_next;
 	string	       gl_name;

+ 4 - 0
mach/proto/cg/main.c

@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "param.h"
 
 /*

+ 4 - 0
mach/proto/cg/move.c

@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "assert.h"
 #include "param.h"
 #include "tables.h"

+ 4 - 0
mach/proto/cg/nextem.c

@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include <em_spec.h>
 #include <em_flag.h>
 #include "assert.h"

+ 2 - 0
mach/proto/cg/param.h

@@ -1,3 +1,5 @@
+/* $Header$ */
+
 #define BMASK 0377
 #define BSHIFT 8
 

+ 4 - 0
mach/proto/cg/reg.c

@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "assert.h"
 #include "param.h"
 #include "tables.h"

+ 4 - 0
mach/proto/cg/regvar.c

@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "assert.h"
 #include "param.h"
 #include "tables.h"

+ 2 - 0
mach/proto/cg/regvar.h

@@ -1,3 +1,5 @@
+/* $Header$ */
+
 struct regvar {
 	struct regvar  *rv_next;
 	long		rv_off;

+ 2 - 0
mach/proto/cg/result.h

@@ -1,3 +1,5 @@
+/* $Header$ */
+
 struct result {
 	int	e_typ;		/* EV_INT,EV_REG,EV_STR */
 	union {

+ 4 - 0
mach/proto/cg/salloc.c

@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "assert.h"
 #include "param.h"
 #include "tables.h"

+ 4 - 0
mach/proto/cg/state.c

@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "assert.h"
 #include "param.h"
 #include "tables.h"

+ 2 - 0
mach/proto/cg/state.h

@@ -1,3 +1,5 @@
+/* $Header$ */
+
 #define STONSTACK	/* if defined state is saved in stackframe */
 
 typedef struct state {

+ 4 - 0
mach/proto/cg/subr.c

@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "assert.h"
 #include <stdio.h>
 #include "param.h"

+ 2 - 0
mach/proto/cg/types.h

@@ -1,3 +1,5 @@
+/* $Header$ */
+
 #ifndef EM_WSIZE
 EM_WSIZE should be defined at this point
 #endif

+ 4 - 0
mach/proto/cg/var.c

@@ -1,3 +1,7 @@
+#ifndef NORCSID
+static char rcsid[] = "$Header$";
+#endif
+
 #include "param.h"
 #include "tables.h"
 #include "types.h"