summaryrefslogtreecommitdiff
path: root/test/pwd_grp/grcat.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/pwd_grp/grcat.c')
-rw-r--r--test/pwd_grp/grcat.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/test/pwd_grp/grcat.c b/test/pwd_grp/grcat.c
deleted file mode 100644
index a89614025..000000000
--- a/test/pwd_grp/grcat.c
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * grcat.c
- *
- * Generate a printable version of the group database
- */
-/*
- * Arnold Robbins, arnold@gnu.org, May 1993
- * Public Domain
- */
-
-#include <stdlib.h>
-#include <stdio.h>
-#include <grp.h>
-
-int main(int argc, char **argv)
-{
- struct group *g;
- int i;
-
- while ((g = getgrent()) != NULL) {
- printf("%s:%s:%ld:", g->gr_name, g->gr_passwd,
- (long) g->gr_gid);
- for (i = 0; g->gr_mem[i] != NULL; i++) {
- printf("%s", g->gr_mem[i]);
- if (g->gr_mem[i+1] != NULL)
- putchar(',');
- }
- putchar('\n');
- }
- endgrent();
- return 0;
-}