Commit 177fbd88 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Pavel Emelyanov

parasite: Drop builtin_strlen, it's unused

Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent c19c4477
...@@ -58,14 +58,6 @@ static void brk_free(unsigned long bytes) ...@@ -58,14 +58,6 @@ static void brk_free(unsigned long bytes)
brk_tail -= bytes; brk_tail -= bytes;
} }
static unsigned long builtin_strlen(char *str)
{
unsigned long len = 0;
while (*str++)
len++;
return len;
}
static const unsigned char hex[] = "0123456789abcdef"; static const unsigned char hex[] = "0123456789abcdef";
static char *long2hex(unsigned long v) static char *long2hex(unsigned long v)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment