diff options
author | Gary Houston <ghouston@arglist.com> | 2001-06-20 17:33:43 +0000 |
---|---|---|
committer | Gary Houston <ghouston@arglist.com> | 2001-06-20 17:33:43 +0000 |
commit | fbbdb1217429d014ba94744b90d7e9c392e89cac (patch) | |
tree | e8619922b9164653c9d868b796aab6ce48fe91fd | |
parent | 72c17ed0ee23257c99ab3a8a92ed1686f3c99e92 (diff) | |
download | guile-fbbdb1217429d014ba94744b90d7e9c392e89cac.tar.gz |
* deprecation.c, extensions.c, rw.c: include string.h.
-rw-r--r-- | libguile/ChangeLog | 4 | ||||
-rw-r--r-- | libguile/deprecation.c | 1 | ||||
-rw-r--r-- | libguile/extensions.c | 2 | ||||
-rw-r--r-- | libguile/rw.c | 1 |
4 files changed, 8 insertions, 0 deletions
diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 94f223656..311be7248 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,7 @@ +2001-06-20 Gary Houston <ghouston@arglist.com> + + * deprecation.c, extensions.c, rw.c: include string.h. + 2001-06-19 Gary Houston <ghouston@arglist.com> * filter-doc-snarfage.c (process): added ungetc in diff --git a/libguile/deprecation.c b/libguile/deprecation.c index 1f6d1ffb0..6501d7fa3 100644 --- a/libguile/deprecation.c +++ b/libguile/deprecation.c @@ -42,6 +42,7 @@ #include <stdio.h> +#include <string.h> #include "libguile/_scm.h" diff --git a/libguile/extensions.c b/libguile/extensions.c index e5f19c806..b549f0fc7 100644 --- a/libguile/extensions.c +++ b/libguile/extensions.c @@ -41,6 +41,8 @@ * whether to permit this exception to apply to your modifications. * If you do not wish that, delete this exception notice. */ +#include <string.h> + #include "libguile/_scm.h" #include "libguile/strings.h" #include "libguile/gc.h" diff --git a/libguile/rw.c b/libguile/rw.c index ec76881ef..4a19d8946 100644 --- a/libguile/rw.c +++ b/libguile/rw.c @@ -44,6 +44,7 @@ /* This is the C part of the (ice-9 rw) module. */ #include <errno.h> +#include <string.h> #include "libguile/_scm.h" #include "libguile/fports.h" |