diff options
Diffstat (limited to 'libc/unistd/usershell.c')
-rw-r--r-- | libc/unistd/usershell.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/unistd/usershell.c b/libc/unistd/usershell.c index 2a6b66504..261c1c10c 100644 --- a/libc/unistd/usershell.c +++ b/libc/unistd/usershell.c @@ -40,6 +40,8 @@ void endusershell(void) shellb = NULL; shells = NULL; } +libc_hidden_def(endusershell) + void setusershell(void) { endusershell(); @@ -61,6 +63,8 @@ void setusershell(void) shells = (char **)shellb; } } +libc_hidden_def(setusershell) + char *getusershell(void) { char *sh; |