mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 11:50:28 +02:00
15 lines
262 B
C
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
|