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>
This commit is contained in:
Arnaud Lacombe 2010-11-08 18:31:53 -05:00 коммит произвёл Michal Marek
Родитель 8af27e1dc4
Коммит 01660dfc37
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

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

Просмотреть файл

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