From 60d2f8f3c7f1cdacafcbd60dc004e32cc90035ca Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Sat, 8 Jun 2013 00:22:23 +0000 Subject: Use (void) in no-arguments function definitions. --- misc/getusershell.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'misc/getusershell.c') diff --git a/misc/getusershell.c b/misc/getusershell.c index 677377c3f7..fc2c43b771 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; -- cgit v1.2.1