libthread: remove unused skip() function

This commit is contained in:
cinap_lenrek 2021-10-12 00:51:02 +00:00
parent 07608c768f
commit 928b38c7b9

View file

@ -58,16 +58,6 @@ mainlauncher(void *arg)
threadexits("threadmain");
}
static char*
skip(char *p)
{
while(*p == ' ')
p++;
while(*p != ' ' && *p != 0)
p++;
return p;
}
static void
efork(Execargs *e)
{