aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Templeton <[email protected]>2022-07-18 18:10:55 -0400
committerRobin Templeton <[email protected]>2022-07-18 18:10:55 -0400
commit8bc3ef5f21fd83216349fba54e3ba13ebd73828c (patch)
tree5a23fe8117d056d9d64280a3a3c9cefd5716446c
parent38db3c1b99c5f766a1a45cfb1458ac4c326b3e6f (diff)
declare smobs in alloc.cHEADmaster
-rw-r--r--src/alloc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c
index e64bc37fdc..7d7308b893 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -1619,6 +1619,10 @@ print_lisp_string (SCM obj, SCM port, scm_print_state *pstate)
return 0;
}
+scm_t_bits lisp_misc_tag;
+scm_t_bits lisp_string_tag;
+scm_t_bits lisp_vectorlike_tag;
+
void
init_alloc_once (void)
{