From e2aa1f4fa9a36d223e271cc24dfad691f6a56d12 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 7 Oct 2000 23:46:22 +0000 Subject: Formatting update --- libc/pwd_grp/fgetpwent.c | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'libc/pwd_grp/fgetpwent.c') 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 #include -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)); } -- cgit v1.2.3