diff options
Diffstat (limited to 'misc/getusershell.c')
-rw-r--r-- | misc/getusershell.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/misc/getusershell.c b/misc/getusershell.c index 677377c..fc2c43b 100644 --- a/misc/getusershell.c +++ b/misc/getusershell.c @@ -62,7 +62,7 @@ static char **initshells (void) __THROW; * Get a list of shells from _PATH_SHELLS, if it exists. */ char * -getusershell() +getusershell (void) { char *ret; @@ -75,7 +75,7 @@ getusershell() } void -endusershell() +endusershell (void) { free(shells); @@ -86,14 +86,14 @@ endusershell() } void -setusershell() +setusershell (void) { curshell = initshells(); } static char ** -initshells() +initshells (void) { char **sp, *cp; FILE *fp; |