diff options
author | Matt Wette <matt.wette@gmail.com> | 2020-03-21 18:19:29 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-03-21 18:25:52 +0100 |
commit | 865d48058e6b1604b95a5da49334aaf80a6d6471 (patch) | |
tree | aee2f073406069ffd29a22958cb93fba2e1826c7 /libguile/null-threads.c | |
parent | 89edd1bc2dcff50fb05c3598a846d6b51b172f7c (diff) | |
download | guile-865d48058e6b1604b95a5da49334aaf80a6d6471.tar.gz |
Fix compilation --without-threads.
Fixes <https://bugs.gnu.org/40075>.
Reported by Thomas Klausner <tk@giga.or.at>.
* libguile/null-threads.h: Include "libguile/scm.h".
* libguile/null-threads.c: Include "libguile/scmconfig.h".
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'libguile/null-threads.c')
-rw-r--r-- | libguile/null-threads.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libguile/null-threads.c b/libguile/null-threads.c index fd9f189b1..aa6dbdfa1 100644 --- a/libguile/null-threads.c +++ b/libguile/null-threads.c @@ -23,6 +23,8 @@ #include <stdlib.h> +#include "libguile/scmconfig.h" + #if SCM_USE_NULL_THREADS #include "null-threads.h" |