Openbsd malloc.h warning fix.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@37368 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rmottola 2013-11-07 14:41:58 +00:00
parent 169daabc3b
commit ae9f830228
4 changed files with 16 additions and 6 deletions

View file

@ -1,5 +1,5 @@
/** NSException - Object encapsulation of a general exception handler
Copyright (C) 1993, 1994, 1996, 1997, 1999 Free Software Foundation, Inc.
Copyright (C) 1993-2013 Free Software Foundation, Inc.
Written by: Adam Fedor <fedor@boulder.colorado.edu>
Date: Mar 1995
@ -48,8 +48,10 @@
#endif
#ifdef HAVE_MALLOC_H
#if !defined(__OpenBSD__)
#include <malloc.h>
#endif
#endif
#ifdef HAVE_ALLOCA_H
#include <alloca.h>
#endif