Don't try to include <alloca.h> (as for other BSDs)

fixes #4777
This commit is contained in:
Edgar Fuß 2017-02-08 17:50:49 +01:00 committed by Michael Friedrich
parent f454053d13
commit 582f700a1a
1 changed files with 2 additions and 2 deletions

View File

@ -17,9 +17,9 @@
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */
#if !defined(__FreeBSD__) && !defined(__OpenBSD__)
#if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__)
#include <alloca.h>
#endif /* !__FreeBSD__ && !__OpenBSD__ */
#endif /* !__FreeBSD__ && !__OpenBSD__ && !__NetBSD__ */
#include <unistd.h>
#include <stdarg.h>
#include <stdbool.h>