1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-09 15:10:29 +02:00
guile/quads-types.h

15 lines
262 B
C

#ifndef QUADS_TYPES_H
#define QUADS_TYPES_H
#define FOR_EACH_HEAP_OBJECT_KIND(M) \
M(quad, Quad, QUAD)
#include "heap-objects.h"
#include "simple-tagging-scheme.h"
struct Quad {
struct gc_header header;
struct Quad *kids[4];
};
#endif // QUADS_TYPES_H