njvm/objref.c
2024-01-18 17:17:07 +00:00

11 lines
148 B
C

#ifndef OBJREF
#define OBJREF
typedef struct {
unsigned int size;
unsigned char data[1];
} *ObjRef;
#endif /* ifndef OBJREF
#define OBJREF */