diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-10-12 00:51:02 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-10-12 00:51:02 +0000 |
commit | 928b38c7b9d538f933eabdb563a408c3a6a95504 (patch) | |
tree | cfe63f835a6740ee01c7dd8faec1cd42d42580c7 /sys/src/libthread | |
parent | 07608c768faadfe960872d492d960be3112b7999 (diff) |
libthread: remove unused skip() function
Diffstat (limited to 'sys/src/libthread')
-rw-r--r-- | sys/src/libthread/main.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/sys/src/libthread/main.c b/sys/src/libthread/main.c index 48a8acd52..ab8cceef2 100644 --- a/sys/src/libthread/main.c +++ b/sys/src/libthread/main.c @@ -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) { |