1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 06:20:23 +02:00

* alloca.c: #include <config.h> if HAVE_CONFIG_H.

This commit is contained in:
Rob Browning 2003-03-25 23:52:25 +00:00
parent b49ed9c97f
commit 9b90309501

View file

@ -21,11 +21,12 @@
allocating any. It is a good idea to use alloca(0) in
your main control loop, etc. to force garbage collection. */
#ifdef HAVE_CONFIG_H
#include "libguile/scmconfig.h"
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include "libguile/scmconfig.h"
#ifdef HAVE_STRING_H
#include <string.h>
#endif