commit | 8ded9968d47577c45e5c1605b18ca549f9959edc | [log] [tgz] |
---|---|---|
author | Andreas Gampe <agampe@google.com> | Mon Apr 06 12:20:24 2015 -0700 |
committer | Andreas Gampe <agampe@google.com> | Mon Apr 06 12:20:45 2015 -0700 |
tree | c1c14074ff0d85be7a397add9f7a3d2e1e816e82 | |
parent | f99516538f2ccb785b858ca6dc58df23a35564a5 [diff] |
Ril: Fix missing includes umask requires sys/stat.h and sys/types.h. Change-Id: Idc44976675c0f178bc860773e0bc1b65b392adcc
diff --git a/rild/rild.c b/rild/rild.c index 8d3fb6a..0747717 100644 --- a/rild/rild.c +++ b/rild/rild.c
@@ -31,6 +31,8 @@ #include <cutils/sockets.h> #include <sys/capability.h> #include <sys/prctl.h> +#include <sys/stat.h> +#include <sys/types.h> #include <private/android_filesystem_config.h> #include "hardware/qemu_pipe.h"