Clean up extra-functions
diff --git a/extra-functions.c b/extra-functions.c
index 8a2e9ce..9157e23 100644
--- a/extra-functions.c
+++ b/extra-functions.c
@@ -303,14 +303,6 @@
     return o;
 }
 
-static void set_sdcard_update_bootloader_message() {
-    struct bootloader_message boot;
-    memset(&boot, 0, sizeof(boot));
-    strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
-    strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
-    set_bootloader_message(&boot);
-}
-
 int TWtry_update_binary(const char *path, ZipArchive *zip, int* wipe_cache) {
 	const ZipEntry* binary_entry =
             mzFindZipEntry(zip, ASSUMED_UPDATE_BINARY_NAME);
@@ -924,30 +916,6 @@
     return lastVal;
 }
 
-char* 
-print_batt_cap()  {
-	char* full_cap_s = (char*)malloc(30);
-	char full_cap_a[30];
-	
-	int cap_i = get_battery_level();
-    
-    //int len = strlen(cap_s);
-	//if (cap_s[len-1] == '\n') {
-	//	cap_s[len-1] = 0;
-	//}
-	
-	// Get a usable time
-	struct tm *current;
-	time_t now;
-	now = time(0);
-	current = localtime(&now);
-	
-	sprintf(full_cap_a, "Battery Level: %i%% @ %02D:%02D", cap_i, current->tm_hour, current->tm_min);
-	strcpy(full_cap_s, full_cap_a);
-	
-	return full_cap_s;
-}
-
 void update_tz_environment_variables() {
     setenv("TZ", DataManager_GetStrValue(TW_TIME_ZONE_VAR), 1);
     tzset();
diff --git a/extra-functions.h b/extra-functions.h
index f763d17..d3a43cd 100644
--- a/extra-functions.h
+++ b/extra-functions.h
@@ -20,9 +20,6 @@
 
 static long tmplog_offset = 0;
 
-// Battery level
-char* print_batt_cap();
-
 void update_tz_environment_variables();
 
 void fix_perms();