mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-12 00:30:20 +02:00
10 lines
211 B
C
10 lines
211 B
C
#ifndef GCBENCH_TYPES_H
|
|
#define GCBENCH_TYPES_H
|
|
|
|
#define FOR_EACH_HEAP_OBJECT_KIND(M) \
|
|
M(node, Node, NODE) \
|
|
M(double_array, DoubleArray, DOUBLE_ARRAY)
|
|
|
|
#include "heap-objects.h"
|
|
|
|
#endif // GCBENCH_TYPES_H
|