include malloc.h for alloc() on platforms where it isn't in alloca.h

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29971 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2010-03-16 06:11:00 +00:00
parent 361f90ce35
commit 9cf3ffc49f
8 changed files with 24 additions and 0 deletions

View file

@ -25,6 +25,9 @@
#import "common.h"
#ifdef HAVE_MALLOC_H
#include <malloc.h>
#endif
#ifdef HAVE_ALLOCA_H
#include <alloca.h>
#endif