added rcsid
This commit is contained in:
parent
445ee4ccb8
commit
54e681c6cc
21 changed files with 64 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
#define assert(x) if(!(x)) badassertion("x",__FILE__,__LINE__)
|
#define assert(x) if(!(x)) badassertion("x",__FILE__,__LINE__)
|
||||||
#else
|
#else
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int t_token; /* kind of token, -1 for register */
|
int t_token; /* kind of token, -1 for register */
|
||||||
union {
|
union {
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
#ifndef NORCSID
|
||||||
|
static char rcsid[] = "$Header$";
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
#include "equiv.h"
|
#include "equiv.h"
|
||||||
#include "param.h"
|
#include "param.h"
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
#define MAXCREG 4
|
#define MAXCREG 4
|
||||||
|
|
||||||
struct perm {
|
struct perm {
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
extern int maxply; /* amount of lookahead allowed */
|
extern int maxply; /* amount of lookahead allowed */
|
||||||
extern int stackheight; /* # of tokens on fakestack */
|
extern int stackheight; /* # of tokens on fakestack */
|
||||||
extern token_t fakestack[]; /* fakestack itself */
|
extern token_t fakestack[]; /* fakestack itself */
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
#ifndef NORCSID
|
||||||
|
static char rcsid[] = "$Header$";
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "param.h"
|
#include "param.h"
|
||||||
#include "tables.h"
|
#include "tables.h"
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
typedef struct glosym {
|
typedef struct glosym {
|
||||||
struct glosym *gl_next;
|
struct glosym *gl_next;
|
||||||
string gl_name;
|
string gl_name;
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
#ifndef NORCSID
|
||||||
|
static char rcsid[] = "$Header$";
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "param.h"
|
#include "param.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
#ifndef NORCSID
|
||||||
|
static char rcsid[] = "$Header$";
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
#include "param.h"
|
#include "param.h"
|
||||||
#include "tables.h"
|
#include "tables.h"
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
#ifndef NORCSID
|
||||||
|
static char rcsid[] = "$Header$";
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <em_spec.h>
|
#include <em_spec.h>
|
||||||
#include <em_flag.h>
|
#include <em_flag.h>
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
#define BMASK 0377
|
#define BMASK 0377
|
||||||
#define BSHIFT 8
|
#define BSHIFT 8
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
#ifndef NORCSID
|
||||||
|
static char rcsid[] = "$Header$";
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
#include "param.h"
|
#include "param.h"
|
||||||
#include "tables.h"
|
#include "tables.h"
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
#ifndef NORCSID
|
||||||
|
static char rcsid[] = "$Header$";
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
#include "param.h"
|
#include "param.h"
|
||||||
#include "tables.h"
|
#include "tables.h"
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
struct regvar {
|
struct regvar {
|
||||||
struct regvar *rv_next;
|
struct regvar *rv_next;
|
||||||
long rv_off;
|
long rv_off;
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
struct result {
|
struct result {
|
||||||
int e_typ; /* EV_INT,EV_REG,EV_STR */
|
int e_typ; /* EV_INT,EV_REG,EV_STR */
|
||||||
union {
|
union {
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
#ifndef NORCSID
|
||||||
|
static char rcsid[] = "$Header$";
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
#include "param.h"
|
#include "param.h"
|
||||||
#include "tables.h"
|
#include "tables.h"
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
#ifndef NORCSID
|
||||||
|
static char rcsid[] = "$Header$";
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
#include "param.h"
|
#include "param.h"
|
||||||
#include "tables.h"
|
#include "tables.h"
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
#define STONSTACK /* if defined state is saved in stackframe */
|
#define STONSTACK /* if defined state is saved in stackframe */
|
||||||
|
|
||||||
typedef struct state {
|
typedef struct state {
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
#ifndef NORCSID
|
||||||
|
static char rcsid[] = "$Header$";
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "param.h"
|
#include "param.h"
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
#ifndef EM_WSIZE
|
#ifndef EM_WSIZE
|
||||||
EM_WSIZE should be defined at this point
|
EM_WSIZE should be defined at this point
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
#ifndef NORCSID
|
||||||
|
static char rcsid[] = "$Header$";
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "param.h"
|
#include "param.h"
|
||||||
#include "tables.h"
|
#include "tables.h"
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
|
|
Loading…
Reference in a new issue