1
0
Fork 0

scripts/genksyms: fix header usage

FreeBSD does not like <malloc.h> when __STDC__ is defined, use the standard
<stdlib.h> instead.

Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
hifive-unleashed-5.1
Arnaud Lacombe 2010-11-08 18:31:53 -05:00 committed by Michal Marek
parent 8af27e1dc4
commit 01660dfc37
2 changed files with 2 additions and 2 deletions

View File

@ -160,7 +160,7 @@
#include <assert.h>
#include <malloc.h>
#include <stdlib.h>
#include "genksyms.h"
static int is_typedef;

View File

@ -24,7 +24,7 @@
%{
#include <assert.h>
#include <malloc.h>
#include <stdlib.h>
#include "genksyms.h"
static int is_typedef;