1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-09 13:30:26 +02:00

Add malloc.h to get alloca() on mingw. Reported by "The Senator".

This commit is contained in:
Kevin Ryde 2006-05-27 22:49:09 +00:00
parent c792a7533c
commit cd4387d987

View file

@ -45,6 +45,9 @@ char *alloca ();
# endif
# endif
#endif
#if HAVE_MALLOC_H
#include <malloc.h> /* alloca on mingw, though its not used on that system */
#endif
#include <stdio.h>
#include <errno.h>