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/fgetgrent.c | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'libc/pwd_grp/fgetgrent.c') diff --git a/libc/pwd_grp/fgetgrent.c b/libc/pwd_grp/fgetgrent.c index 800236fcc..09701a38b 100644 --- a/libc/pwd_grp/fgetgrent.c +++ b/libc/pwd_grp/fgetgrent.c @@ -22,14 +22,12 @@ #include #include -struct group * -fgetgrent(FILE * file) +struct group *fgetgrent(FILE * file) { - if (file==NULL) - { - errno=EINTR; - return NULL; - } - - return __getgrent(fileno(file)); + if (file == NULL) { + errno = EINTR; + return NULL; + } + + return __getgrent(fileno(file)); } -- cgit v1.2.3