diff options
Diffstat (limited to 'bin/sh/input.c')
-rw-r--r-- | bin/sh/input.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/sh/input.c b/bin/sh/input.c index c8b1a45..671bbdf 100644 --- a/bin/sh/input.c +++ b/bin/sh/input.c @@ -106,6 +106,7 @@ EditLine *el; /* cookie for editline package */ static void pushfile(void); static int preadfd(void); +static void popstring(void); #ifdef mkinit INCLUDE "input.h" @@ -372,7 +373,7 @@ pushstring(char *s, int len, void *ap) INTON; } -void +static void popstring(void) { struct strpush *sp = parsefile->strpush; |