aboutsummaryrefslogtreecommitdiff
path: root/toys
diff options
context:
space:
mode:
Diffstat (limited to 'toys')
-rw-r--r--toys/android/log.c1
-rw-r--r--toys/android/setprop.c2
-rw-r--r--toys/android/start.c2
3 files changed, 0 insertions, 5 deletions
diff --git a/toys/android/log.c b/toys/android/log.c
index cc800e78..09e36d7b 100644
--- a/toys/android/log.c
+++ b/toys/android/log.c
@@ -20,7 +20,6 @@ config LOG
#define FOR_log
#include "toys.h"
-#include <android/log.h>
GLOBALS(
char *tag;
diff --git a/toys/android/setprop.c b/toys/android/setprop.c
index 14c24d9f..cda34a5d 100644
--- a/toys/android/setprop.c
+++ b/toys/android/setprop.c
@@ -17,8 +17,6 @@ config SETPROP
#define FOR_setprop
#include "toys.h"
-#include <sys/system_properties.h>
-
void setprop_main(void)
{
char *name = toys.optargs[0], *value = toys.optargs[1];
diff --git a/toys/android/start.c b/toys/android/start.c
index f6b3c379..5df847a9 100644
--- a/toys/android/start.c
+++ b/toys/android/start.c
@@ -27,8 +27,6 @@ config STOP
#define FOR_start
#include "toys.h"
-#include <sys/system_properties.h>
-
static void start_stop(int start)
{
char *property = start ? "ctl.start" : "ctl.stop";