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