mtdutils: add include to fix implicit function warning

Including unistd.h fixes implicit function warning for "read" and "close"
in mtdutils/mounts.c

Change-Id: I72c3a52de035600cdd794ed5e2d4cae0da26f428
This commit is contained in:
Hashcode
2015-10-13 12:47:13 -07:00
parent 0579114c33
commit 7246b5d9e3
+1
View File
@@ -19,6 +19,7 @@
#include <string.h>
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
#include <sys/mount.h>
#include "mounts.h"