From 8bc3ef5f21fd83216349fba54e3ba13ebd73828c Mon Sep 17 00:00:00 2001 From: Robin Templeton Date: Mon, 18 Jul 2022 18:10:55 -0400 Subject: [PATCH] declare smobs in alloc.c --- src/alloc.c | 4 ++++ 1 file changed, 4 insertions(+) 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) { -- 2.20.1