diff --git a/apps/debug_menu.c b/apps/debug_menu.c index f4adb01528..828b881b53 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -1052,20 +1052,6 @@ static bool dbg_cpufreq(void) #if defined(HAVE_TSC2100) && (CONFIG_PLATFORM & PLATFORM_NATIVE) #include "tsc2100.h" -static char *itob(int n, int len) -{ - static char binary[64]; - int i,j; - for (i=1, j=0;i<=len;i++) - { - binary[j++] = n&(1<<(len-i))?'1':'0'; - if (i%4 == 0) - binary[j++] = ' '; - } - binary[j] = '\0'; - return binary; -} - static const char* tsc2100_debug_getname(int selected_item, void * data, char *buffer, size_t buffer_len) {