diff --git a/mach/proto/cg/assert.h b/mach/proto/cg/assert.h index 156ee4b8..3cc93b88 100644 --- a/mach/proto/cg/assert.h +++ b/mach/proto/cg/assert.h @@ -1,3 +1,5 @@ +/* $Header$ */ + #ifndef NDEBUG #define assert(x) if(!(x)) badassertion("x",__FILE__,__LINE__) #else diff --git a/mach/proto/cg/data.h b/mach/proto/cg/data.h index e9cbf112..ecfe7f67 100644 --- a/mach/proto/cg/data.h +++ b/mach/proto/cg/data.h @@ -1,3 +1,5 @@ +/* $Header$ */ + typedef struct { int t_token; /* kind of token, -1 for register */ union { diff --git a/mach/proto/cg/equiv.c b/mach/proto/cg/equiv.c index 3af0a34e..0e677d37 100644 --- a/mach/proto/cg/equiv.c +++ b/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" diff --git a/mach/proto/cg/equiv.h b/mach/proto/cg/equiv.h index ee859732..f1dc6c85 100644 --- a/mach/proto/cg/equiv.h +++ b/mach/proto/cg/equiv.h @@ -1,3 +1,5 @@ +/* $Header$ */ + #define MAXCREG 4 struct perm { diff --git a/mach/proto/cg/extern.h b/mach/proto/cg/extern.h index 5b866cf2..5e84bf52 100644 --- a/mach/proto/cg/extern.h +++ b/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 */ diff --git a/mach/proto/cg/glosym.c b/mach/proto/cg/glosym.c index cc2ca430..cf8f0297 100644 --- a/mach/proto/cg/glosym.c +++ b/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" diff --git a/mach/proto/cg/glosym.h b/mach/proto/cg/glosym.h index c68fe54d..7fb4c7cf 100644 --- a/mach/proto/cg/glosym.h +++ b/mach/proto/cg/glosym.h @@ -1,3 +1,5 @@ +/* $Header$ */ + typedef struct glosym { struct glosym *gl_next; string gl_name; diff --git a/mach/proto/cg/main.c b/mach/proto/cg/main.c index 08216092..08d5c46c 100644 --- a/mach/proto/cg/main.c +++ b/mach/proto/cg/main.c @@ -1,3 +1,7 @@ +#ifndef NORCSID +static char rcsid[] = "$Header$"; +#endif + #include "param.h" /* diff --git a/mach/proto/cg/move.c b/mach/proto/cg/move.c index 320f5a35..b74e5508 100644 --- a/mach/proto/cg/move.c +++ b/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" diff --git a/mach/proto/cg/nextem.c b/mach/proto/cg/nextem.c index d61c6337..4aab43f2 100644 --- a/mach/proto/cg/nextem.c +++ b/mach/proto/cg/nextem.c @@ -1,3 +1,7 @@ +#ifndef NORCSID +static char rcsid[] = "$Header$"; +#endif + #include #include #include "assert.h" diff --git a/mach/proto/cg/param.h b/mach/proto/cg/param.h index c456739d..24326015 100644 --- a/mach/proto/cg/param.h +++ b/mach/proto/cg/param.h @@ -1,3 +1,5 @@ +/* $Header$ */ + #define BMASK 0377 #define BSHIFT 8 diff --git a/mach/proto/cg/reg.c b/mach/proto/cg/reg.c index 7190f32c..0e10ab8b 100644 --- a/mach/proto/cg/reg.c +++ b/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" diff --git a/mach/proto/cg/regvar.c b/mach/proto/cg/regvar.c index 0bc19800..6be7549e 100644 --- a/mach/proto/cg/regvar.c +++ b/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" diff --git a/mach/proto/cg/regvar.h b/mach/proto/cg/regvar.h index b6bd4577..716a68f2 100644 --- a/mach/proto/cg/regvar.h +++ b/mach/proto/cg/regvar.h @@ -1,3 +1,5 @@ +/* $Header$ */ + struct regvar { struct regvar *rv_next; long rv_off; diff --git a/mach/proto/cg/result.h b/mach/proto/cg/result.h index 4fd6e287..e4fa6299 100644 --- a/mach/proto/cg/result.h +++ b/mach/proto/cg/result.h @@ -1,3 +1,5 @@ +/* $Header$ */ + struct result { int e_typ; /* EV_INT,EV_REG,EV_STR */ union { diff --git a/mach/proto/cg/salloc.c b/mach/proto/cg/salloc.c index c4abef16..0543c96a 100644 --- a/mach/proto/cg/salloc.c +++ b/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" diff --git a/mach/proto/cg/state.c b/mach/proto/cg/state.c index 5f4eb692..6ba61c52 100644 --- a/mach/proto/cg/state.c +++ b/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" diff --git a/mach/proto/cg/state.h b/mach/proto/cg/state.h index 10fe09cc..82041690 100644 --- a/mach/proto/cg/state.h +++ b/mach/proto/cg/state.h @@ -1,3 +1,5 @@ +/* $Header$ */ + #define STONSTACK /* if defined state is saved in stackframe */ typedef struct state { diff --git a/mach/proto/cg/subr.c b/mach/proto/cg/subr.c index 85963c3c..90f0add9 100644 --- a/mach/proto/cg/subr.c +++ b/mach/proto/cg/subr.c @@ -1,3 +1,7 @@ +#ifndef NORCSID +static char rcsid[] = "$Header$"; +#endif + #include "assert.h" #include #include "param.h" diff --git a/mach/proto/cg/types.h b/mach/proto/cg/types.h index 5a93f5d6..2c15ac0d 100644 --- a/mach/proto/cg/types.h +++ b/mach/proto/cg/types.h @@ -1,3 +1,5 @@ +/* $Header$ */ + #ifndef EM_WSIZE EM_WSIZE should be defined at this point #endif diff --git a/mach/proto/cg/var.c b/mach/proto/cg/var.c index 0c619c19..48de9ba1 100644 --- a/mach/proto/cg/var.c +++ b/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"