diff options
author | Arnaud Lacombe <lacombar@gmail.com> | 2010-11-08 18:31:53 -0500 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2010-11-25 16:25:06 +0100 |
commit | 01660dfc37933c92dbb7c5718aea61f88025d71f (patch) | |
tree | 13a55e3214f70f123982a8c274708b1cb904e316 /scripts/genksyms | |
parent | 8af27e1dc4e4dd7a7b04c2cd0fc3d419d91d45b0 (diff) | |
download | op-kernel-dev-01660dfc37933c92dbb7c5718aea61f88025d71f.zip op-kernel-dev-01660dfc37933c92dbb7c5718aea61f88025d71f.tar.gz |
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>
Diffstat (limited to 'scripts/genksyms')
-rw-r--r-- | scripts/genksyms/parse.c_shipped | 2 | ||||
-rw-r--r-- | scripts/genksyms/parse.y | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/genksyms/parse.c_shipped b/scripts/genksyms/parse.c_shipped index eaee44e..809b949 100644 --- a/scripts/genksyms/parse.c_shipped +++ b/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; diff --git a/scripts/genksyms/parse.y b/scripts/genksyms/parse.y index 10d7dc7..09a265c 100644 --- a/scripts/genksyms/parse.y +++ b/scripts/genksyms/parse.y @@ -24,7 +24,7 @@ %{ #include <assert.h> -#include <malloc.h> +#include <stdlib.h> #include "genksyms.h" static int is_typedef; |