scm_i_tag_name internal to gc.c
authorAndy Wingo <wingo@pobox.com>
Thu, 28 Nov 2013 10:46:13 +0000 (11:46 +0100)
committerAndy Wingo <wingo@pobox.com>
Thu, 28 Nov 2013 10:46:13 +0000 (11:46 +0100)
* libguile/gc.c (scm_i_tag_name): Make internal to gc.c.

* libguile/private-gc.h: Remove from here.

libguile/gc.c
libguile/private-gc.h

index dc7f5b0..3019a7e 100644 (file)
@@ -237,6 +237,7 @@ SCM_SYMBOL (sym_times, "gc-times");
 
 /* {Scheme Interface to GC}
  */
+static char const * scm_i_tag_name (scm_t_bits tag);
 static SCM
 tag_table_to_type_alist (void *closure, SCM key, SCM val, SCM acc)
 {
@@ -906,7 +907,7 @@ scm_gc_register_allocation (size_t size)
 
 \f
 
-char const *
+static char const *
 scm_i_tag_name (scm_t_bits tag)
 {
   switch (tag & 0x7f) /* 7 bits */
index 4e73385..18e3341 100644 (file)
@@ -27,6 +27,4 @@
 
 SCM_INTERNAL int scm_getenv_int (const char *var, int def);
 
-SCM_INTERNAL char const *scm_i_tag_name (scm_t_bits tag); /* MOVEME */
-
 #endif