9
0
Fork 0

string.c: Fix include

string.c needs string.h, otherwise we get:

lib/string.c:730: warning: no previous prototype for 'memdup'

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2014-03-29 06:49:44 +01:00
parent 0ae451a7bc
commit 88ffe72278
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@
*/
#include <linux/types.h>
#include <linux/string.h>
#include <string.h>
#include <linux/ctype.h>
#include <malloc.h>