diff options
author | Ludovic Courtès <ludo@gnu.org> | 2010-11-19 14:14:53 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2010-11-19 14:14:53 +0100 |
commit | cdd47ec7e55bacd7d6b8d9579a3c170c968abc82 (patch) | |
tree | 06a58e8d45348256de8ad4e5671aa02903926e6f /libguile/strings.c | |
parent | 0b54eea09a4c975931386a34c53711393b1f7c75 (diff) | |
download | guile-cdd47ec7e55bacd7d6b8d9579a3c170c968abc82.tar.gz |
Include <alloca.h> wherever `alloca' is used.
Patch provided by <carlo.bramix@libero.it> (tiny change).
* libguile/control.c, libguile/fluids.c, libguile/foreign.c,
libguile/hashtab.c, libguile/strings.c: Include <alloca.h>.
Diffstat (limited to 'libguile/strings.c')
-rw-r--r-- | libguile/strings.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libguile/strings.c b/libguile/strings.c index e64c37b84..a30545079 100644 --- a/libguile/strings.c +++ b/libguile/strings.c @@ -22,6 +22,7 @@ # include <config.h> #endif +#include <alloca.h> #include <string.h> #include <stdio.h> #include <ctype.h> |