diff options
Diffstat (limited to 'bin/sh/exec.c')
-rw-r--r-- | bin/sh/exec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/sh/exec.c b/bin/sh/exec.c index 3bfdba5..67a858b 100644 --- a/bin/sh/exec.c +++ b/bin/sh/exec.c @@ -104,7 +104,6 @@ STATIC void tryexec __P((char *, char **, char **)); STATIC void execinterp __P((char **, char **)); #endif STATIC void printentry __P((struct tblentry *, int)); -STATIC void clearcmdentry __P((int)); STATIC struct tblentry *cmdlookup __P((char *, int)); STATIC void delete_cmd_entry __P((void)); @@ -640,7 +639,7 @@ changepath(newval) * PATH which has changed. */ -STATIC void +void clearcmdentry(firstchange) int firstchange; { |