njvm/objref.c
2024-01-28 20:33:23 +01:00

15 lines
237 B
C

#ifndef OBJREF
#define OBJREF
#include <stdbool.h>
typedef struct ObjRef{
unsigned int size;
unsigned char data[1];
bool brokenHeart;
struct ObjRef *forwardPointer;
} *ObjRef;
#endif /* ifndef OBJREF
#define OBJREF */