浏览代码

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>
Arnaud Lacombe 14 年之前
父节点
当前提交
01660dfc37
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      scripts/genksyms/parse.c_shipped
  2. 1 1
      scripts/genksyms/parse.y

+ 1 - 1
scripts/genksyms/parse.c_shipped

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

+ 1 - 1
scripts/genksyms/parse.y

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