search for: e026e868

Displaying 1 result from an estimated 1 matches for "e026e868".

Did you mean: 1026868
2020 Mar 28
0
[klibc:update-dash] dash: mkinit: Split reset into exitreset and reset
...x 59a202cb..6ea0562f 100644 --- a/usr/dash/expand.c +++ b/usr/dash/expand.c @@ -1780,7 +1780,7 @@ varunset(const char *end, const char *var, const char *umsg, int varflags) INCLUDE "expand.h" -RESET { +EXITRESET { ifsfree(); } diff --git a/usr/dash/init.h b/usr/dash/init.h index e026e868..49791a07 100644 --- a/usr/dash/init.h +++ b/usr/dash/init.h @@ -35,5 +35,5 @@ */ void init(void); +void exitreset(void); void reset(void); -void initshellproc(void); diff --git a/usr/dash/main.c b/usr/dash/main.c index 9f037173..8b351189 100644 --- a/usr/dash/main.c +++ b/usr/dash/main.c @@...