aboutsummaryrefslogtreecommitdiffstats
path: root/android/boot-properties.c
diff options
context:
space:
mode:
Diffstat (limited to 'android/boot-properties.c')
-rw-r--r--android/boot-properties.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/android/boot-properties.c b/android/boot-properties.c
index 1c714e9..19941a0 100644
--- a/android/boot-properties.c
+++ b/android/boot-properties.c
@@ -27,6 +27,10 @@
#define T(...) ((void)0)
#endif
+/* this code supports the list of system properties that will
+ * be set on boot in the emulated system.
+ */
+
typedef struct BootProperty {
struct BootProperty* next;
char* property;
@@ -59,10 +63,6 @@ static BootProperty* _boot_properties;
static BootProperty** _boot_properties_tail = &_boot_properties;
static int _inited;
-/* this code supports the list of system properties that will
- * be set on boot in the emulated system.
- */
-
int
boot_property_add2( const char* name, int namelen,
const char* value, int valuelen )