summaryrefslogtreecommitdiff
path: root/src/user/app/shell
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/app/shell')
-rw-r--r--src/user/app/shell/parser.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/user/app/shell/parser.c b/src/user/app/shell/parser.c
index 31c45d1..072c720 100644
--- a/src/user/app/shell/parser.c
+++ b/src/user/app/shell/parser.c
@@ -2,10 +2,6 @@
#include <stdbool.h>
#include <string.h>
-static bool isspace(char c) {
- return c == ' ' || c == '\t' || c == '\n';
-}
-
static char skipspace(char **sp) {
char *s = *sp;
while (*s && isspace(*s)) s++;