commit | f114ab82ed181847fd177b4c2bdfccb780915c41 | [log] [tgz] |
---|---|---|
author | Mark Salyzyn <salyzyn@google.com> | Wed Apr 01 19:26:49 2015 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Apr 01 19:26:50 2015 +0000 |
tree | 64bc34c0f4184c4aa8bc61a587bd4fd916a45d48 | |
parent | 1a09cc22ab66a94aba755641bf1f2a7a3b2876b9 [diff] | |
parent | 7d8a429e5001d6501a463c93198d8026f94a1bd7 [diff] |
Merge "package missing include for string.h"
diff --git a/run-as/package.c b/run-as/package.c index 4f8f3a7..9e1f5bb 100644 --- a/run-as/package.c +++ b/run-as/package.c
@@ -16,9 +16,11 @@ */ #include <errno.h> #include <fcntl.h> -#include <unistd.h> -#include <sys/stat.h> +#include <string.h> #include <sys/mman.h> +#include <sys/stat.h> +#include <unistd.h> + #include <private/android_filesystem_config.h> #include "package.h"