diff options
author | Andy Wingo <wingo@pobox.com> | 2018-06-20 13:41:26 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2018-06-20 13:41:26 +0200 |
commit | a2411c39820e5c58083c93beb7e9780bf4646630 (patch) | |
tree | 198aaa2899e9943a1456291b29ded95067f883f0 /libguile | |
parent | e2470e6acab93671e1d2330a2b5b51c278790c9e (diff) | |
download | guile-a2411c39820e5c58083c93beb7e9780bf4646630.tar.gz |
Devolve programs.h from _scm.h.
* libguile/_scm.h: Remove programs.h.
* libguile/strings.h: Add gc.h.
Diffstat (limited to 'libguile')
-rw-r--r-- | libguile/_scm.h | 3 | ||||
-rw-r--r-- | libguile/programs.h | 2 | ||||
-rw-r--r-- | libguile/strings.h | 1 |
3 files changed, 2 insertions, 4 deletions
diff --git a/libguile/_scm.h b/libguile/_scm.h index 01c99c01b..0115dab65 100644 --- a/libguile/_scm.h +++ b/libguile/_scm.h @@ -34,9 +34,6 @@ #include "libguile/__scm.h" -/* Include headers for those files central to the implementation. The - rest should be explicitly #included in the C files themselves. */ -#include "libguile/programs.h" /* ... and program.h. */ #include "libguile/strings.h" diff --git a/libguile/programs.h b/libguile/programs.h index 457d6dca9..2afff7af7 100644 --- a/libguile/programs.h +++ b/libguile/programs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001, 2009, 2010, 2011, 2012, 2013, 2014, 2018 Free Software Foundation, Inc. +/* Copyright (C) 2001, 2009-2014, 2018 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License diff --git a/libguile/strings.h b/libguile/strings.h index 5a1d4592f..ff67679db 100644 --- a/libguile/strings.h +++ b/libguile/strings.h @@ -25,6 +25,7 @@ #include "libguile/__scm.h" +#include <libguile/gc.h> #include <libguile/error.h> #include "libguile/inline.h" #include <libguile/snarf.h> |