From: sater Date: Sat, 19 May 1984 11:42:19 +0000 (+0000) Subject: added rcsid X-Git-Tag: release-5-5~6270 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=54e681c6cc475a17d22cb03dcac685dd8dbb2987;p=ack.git added rcsid --- diff --git a/mach/proto/cg/assert.h b/mach/proto/cg/assert.h index 156ee4b8d..3cc93b88b 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 e9cbf1129..ecfe7f677 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 3af0a34ea..0e677d376 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 ee8597327..f1dc6c852 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 5b866cf2f..5e84bf52a 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 cc2ca430f..cf8f0297f 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 c68fe54d4..7fb4c7cf1 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 08216092f..08d5c46c2 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 320f5a354..b74e55083 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 d61c63376..4aab43f2e 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 c456739df..24326015b 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 7190f32c0..0e10ab8bf 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 0bc198005..6be7549e0 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 b6bd4577a..716a68f2b 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 4fd6e287e..e4fa6299a 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 c4abef166..0543c96a4 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 5f4eb6922..6ba61c52d 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 10fe09cca..820416905 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 85963c3c3..90f0add97 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 5a93f5d6f..2c15ac0de 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 0c619c19f..48de9ba1d 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"