summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Salyzyn <salyzyn@google.com>2015-04-06 13:51:43 -0700
committerMark Salyzyn <salyzyn@google.com>2015-04-06 13:51:43 -0700
commit9101e51e4db1df0e0bc1207664c8725c460772f4 (patch)
tree7ce0a36421e85f05717b61c743b2ab24ffe3eb34
parentfca40f72ddd9355ff3e07662719f3e298dcbba9d (diff)
downloadandroid_hardware_ril-9101e51e4db1df0e0bc1207664c8725c460772f4.tar.gz
android_hardware_ril-9101e51e4db1df0e0bc1207664c8725c460772f4.tar.bz2
android_hardware_ril-9101e51e4db1df0e0bc1207664c8725c460772f4.zip
rild: missing include for sys/stat.h
rild.c gets sys/stat.h inherited from private/android_filesystem_config.h it should not rely on this in the future. The intent is to move fs_config function into libcutils and thus deprecate any need for sys/stat.h in this include file. Bug: 19908228 Change-Id: I5b10e9347aa9df8f0523a0ff00287655ca426d18
-rw-r--r--rild/rild.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/rild/rild.c b/rild/rild.c
index 8d3fb6a..8587015 100644
--- a/rild/rild.c
+++ b/rild/rild.c
@@ -31,6 +31,7 @@
#include <cutils/sockets.h>
#include <sys/capability.h>
#include <sys/prctl.h>
+#include <sys/stat.h>
#include <private/android_filesystem_config.h>
#include "hardware/qemu_pipe.h"