aboutsummaryrefslogtreecommitdiffstats
path: root/setprop.c
diff options
context:
space:
mode:
Diffstat (limited to 'setprop.c')
-rw-r--r--setprop.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/setprop.c b/setprop.c
deleted file mode 100644
index 63ad2b4..0000000
--- a/setprop.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <stdio.h>
-
-#include <cutils/properties.h>
-
-int setprop_main(int argc, char *argv[])
-{
- if(argc != 3) {
- fprintf(stderr,"usage: setprop <key> <value>\n");
- return 1;
- }
-
- if(property_set(argv[1], argv[2])){
- fprintf(stderr,"could not set property\n");
- return 1;
- }
-
- return 0;
-}