diff options
author | Ludovic Courtès <ludo@gnu.org> | 2008-09-10 23:33:59 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2008-09-10 23:33:59 +0200 |
commit | b359b36a63844f6fb1e18a070528bcc4fb45c16d (patch) | |
tree | 13a8ad9ed4ef526b0ee2041a4b62a2fd3e136f9b /libguile/threads.c | |
parent | 7f2a6c387c0610b774c5b90ab080e69845f76dfc (diff) | |
download | guile-b359b36a63844f6fb1e18a070528bcc4fb45c16d.tar.gz |
Fix broken GC and threads merge.
* libguile/private-gc.h (scm_i_tag_name): New declaration.
* libguile/threads.c: Include <config.h>.
Diffstat (limited to 'libguile/threads.c')
-rw-r--r-- | libguile/threads.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libguile/threads.c b/libguile/threads.c index 1ccfdca97..8ffefae2e 100644 --- a/libguile/threads.c +++ b/libguile/threads.c @@ -18,6 +18,10 @@ +#if HAVE_CONFIG_H +# include <config.h> +#endif + #include "libguile/boehm-gc.h" #include "libguile/_scm.h" |