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 @@
/** Implementation of connection object for remote object messaging
Copyright (C) 1994, 1995, 1996, 1997, 2000 Free Software Foundation, Inc.
Copyright (C) 1994-2013 Free Software Foundation, Inc.
Created by: Andrew Kachites McCallum <mccallum@gnu.ai.mit.edu>
Date: July 1994
@ -73,8 +73,10 @@
#define EXPOSE_NSDistantObject_IVARS 1
#ifdef HAVE_MALLOC_H
#if !defined(__OpenBSD__)
#include <malloc.h>
#endif
#endif
#ifdef HAVE_ALLOCA_H
#include <alloca.h>
#endif