summaryrefslogtreecommitdiff
path: root/libc/pwd_grp/grent.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/pwd_grp/grent.c')
-rw-r--r--libc/pwd_grp/grent.c31
1 files changed, 13 insertions, 18 deletions
diff --git a/libc/pwd_grp/grent.c b/libc/pwd_grp/grent.c
index 19d618b2b..aab878a89 100644
--- a/libc/pwd_grp/grent.c
+++ b/libc/pwd_grp/grent.c
@@ -28,30 +28,25 @@
#include <fcntl.h>
#include <grp.h>
-static int grp_fd=-1;
+static int grp_fd = -1;
-void
-setgrent(void)
+void setgrent(void)
{
- if (grp_fd!=-1)
- close(grp_fd);
- grp_fd=open("/etc/group", O_RDONLY);
+ if (grp_fd != -1)
+ close(grp_fd);
+ grp_fd = open("/etc/group", O_RDONLY);
}
-void
-endgrent(void)
+void endgrent(void)
{
- if (grp_fd!=-1)
- close(grp_fd);
- grp_fd=-1;
+ if (grp_fd != -1)
+ close(grp_fd);
+ grp_fd = -1;
}
-struct group *
-getgrent(void)
+struct group *getgrent(void)
{
- if (grp_fd==-1)
- return NULL;
- return __getgrent(grp_fd);
+ if (grp_fd == -1)
+ return NULL;
+ return __getgrent(grp_fd);
}
-
-