diff options
Diffstat (limited to 'libc/pwd_grp/fgetpwent.c')
-rw-r--r-- | libc/pwd_grp/fgetpwent.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/libc/pwd_grp/fgetpwent.c b/libc/pwd_grp/fgetpwent.c index e12b89051..cd8742d80 100644 --- a/libc/pwd_grp/fgetpwent.c +++ b/libc/pwd_grp/fgetpwent.c @@ -22,14 +22,12 @@ #include <stdio.h> #include <pwd.h> -struct passwd * -fgetpwent(FILE * file) +struct passwd *fgetpwent(FILE * file) { - if (file==NULL) - { - errno=EINTR; - return NULL; - } + if (file == NULL) { + errno = EINTR; + return NULL; + } - return __getpwent(fileno(file)); + return __getpwent(fileno(file)); } |