=================================================================== RCS file: /home/cvs/OpenXM/src/k097/d.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- OpenXM/src/k097/d.h 2000/12/10 02:21:45 1.3 +++ OpenXM/src/k097/d.h 2005/06/09 04:47:16 1.4 @@ -1,4 +1,4 @@ -/* $OpenXM: OpenXM/src/k097/d.h,v 1.2 2000/01/21 03:01:25 takayama Exp $ */ +/* $OpenXM: OpenXM/src/k097/d.h,v 1.3 2000/12/10 02:21:45 takayama Exp $ */ /* d.h;*/ /* from stackm.h */ @@ -47,12 +47,14 @@ struct Object{ int tag; /* class identifier */ union cell lc; /* left cell */ union cell rc; /* right cell */ + struct object *attr; }; struct object{ /* must be compatible with stackm.h */ int tag; /* class identifier */ union cell lc; /* left cell */ union cell rc; /* right cell */ + struct object *attr; }; typedef struct Object * objectp; /* cf. 65p of Schreiner. */