diff options
author | Gary Houston <ghouston@arglist.com> | 1996-08-07 09:46:41 +0000 |
---|---|---|
committer | Gary Houston <ghouston@arglist.com> | 1996-08-07 09:46:41 +0000 |
commit | 95b8881908aace933729d5242f4ce6e4d031360a (patch) | |
tree | 752602d65c30cc5cfae7b4df46914e078038b7ec /libguile/struct.c | |
parent | 458d621d1fdb842e3218b4184be2f1bc16e98182 (diff) | |
download | guile-95b8881908aace933729d5242f4ce6e4d031360a.tar.gz |
portability fixes for header inclusion etc.
Diffstat (limited to 'libguile/struct.c')
-rw-r--r-- | libguile/struct.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libguile/struct.c b/libguile/struct.c index 265c7d4fd..a15c5508e 100644 --- a/libguile/struct.c +++ b/libguile/struct.c @@ -43,6 +43,10 @@ #include <stdio.h> #include "_scm.h" +#ifdef HAVE_STRING_H +#include <string.h> +#endif + static SCM required_vtable_fields = SCM_BOOL_F; |