Fix broken GC and threads merge.
authorLudovic Courtès <ludo@gnu.org>
Wed, 10 Sep 2008 21:33:59 +0000 (23:33 +0200)
committerLudovic Courtès <ludo@gnu.org>
Wed, 10 Sep 2008 21:33:59 +0000 (23:33 +0200)
* libguile/private-gc.h (scm_i_tag_name): New declaration.

* libguile/threads.c: Include <config.h>.

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

index 00bef9d..b38adde 100644 (file)
@@ -112,6 +112,9 @@ void scm_mark_all (void);
 extern long int scm_i_deprecated_memory_return;
 extern long int scm_i_find_heap_calls;
 
+SCM_INTERNAL char const *scm_i_tag_name (scm_t_bits tag); /* MOVEME */
+
+
 /*
   global init funcs.
  */
index 1ccfdca..8ffefae 100644 (file)
 
 \f
 
+#if HAVE_CONFIG_H
+# include <config.h>
+#endif
+
 #include "libguile/boehm-gc.h"
 #include "libguile/_scm.h"