mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Minor include fixes to avoid malloc.h warnings on OpenBSD.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@38691 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4e57947e71
commit
f4ed6b91c2
3 changed files with 14 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
/** Implementation of NSMethodSignature for GNUStep
|
||||
Copyright (C) 1994, 1995, 1996, 1998 Free Software Foundation, Inc.
|
||||
Copyright (C) 1994-2015 Free Software Foundation, Inc.
|
||||
|
||||
Written by: Andrew Kachites McCallum <mccallum@gnu.ai.mit.edu>
|
||||
Date: August 1994
|
||||
|
@ -42,8 +42,11 @@
|
|||
#import "GSInvocation.h"
|
||||
|
||||
#ifdef HAVE_MALLOC_H
|
||||
#if !defined(__OpenBSD__)
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_ALLOCA_H
|
||||
#include <alloca.h>
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue