diff options
author | Rob Landley <rob@landley.net> | 2015-04-20 20:59:00 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-04-20 20:59:00 -0500 |
commit | e5fb6a28ffb09782e4df08251956f42c48445147 (patch) | |
tree | 08b9f53707a21a96fa6bcf94f1098433eee87863 /toys/android/getprop.c | |
parent | 5b493dc48db03c7e27c8ce002fe216bcd778fe92 (diff) | |
download | toybox-e5fb6a28ffb09782e4df08251956f42c48445147.tar.gz |
Switch setprop to use TOYBOX_ON_ANDROID and fix getprop include.
(I commented out the android-only #include in getprop to do what compile
testing I could, and then forgot to uncomment it.)
Diffstat (limited to 'toys/android/getprop.c')
-rw-r--r-- | toys/android/getprop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/android/getprop.c b/toys/android/getprop.c index 9d5398aa..400d80e7 100644 --- a/toys/android/getprop.c +++ b/toys/android/getprop.c @@ -17,7 +17,7 @@ config GETPROP #define FOR_getprop #include "toys.h" -//#include <cutils/properties.h> +#include <cutils/properties.h> GLOBALS( size_t size; |