njvm/objref.c
2024-01-26 19:13:42 +01:00

13 lines
180 B
C

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