1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 20:30:28 +02:00

Add malloc.h to get alloca() on mingw.

This commit is contained in:
Kevin Ryde 2006-05-27 22:48:28 +00:00
parent ce385c5dc0
commit c792a7533c

View file

@ -53,6 +53,9 @@ char *alloca ();
# endif
# endif
#endif
#if HAVE_MALLOC_H
#include <malloc.h> /* alloca on mingw */
#endif
#include <assert.h>
#include "libguile/_scm.h"