From: Arnaud Lacombe Date: Mon, 8 Nov 2010 23:31:53 +0000 (-0500) Subject: scripts/genksyms: fix header usage X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=01660dfc37933c92dbb7c5718aea61f88025d71f;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git scripts/genksyms: fix header usage FreeBSD does not like when __STDC__ is defined, use the standard instead. Signed-off-by: Arnaud Lacombe Signed-off-by: Michal Marek --- diff --git a/scripts/genksyms/parse.c_shipped b/scripts/genksyms/parse.c_shipped index eaee44e66a4..809b949e495 100644 --- a/scripts/genksyms/parse.c_shipped +++ b/scripts/genksyms/parse.c_shipped @@ -160,7 +160,7 @@ #include -#include +#include #include "genksyms.h" static int is_typedef; diff --git a/scripts/genksyms/parse.y b/scripts/genksyms/parse.y index 10d7dc724b6..09a265cd719 100644 --- a/scripts/genksyms/parse.y +++ b/scripts/genksyms/parse.y @@ -24,7 +24,7 @@ %{ #include -#include +#include #include "genksyms.h" static int is_typedef;