aboutsummaryrefslogtreecommitdiffstats
path: root/guts/getgrent.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/getgrent.c')
-rw-r--r--guts/getgrent.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/guts/getgrent.c b/guts/getgrent.c
deleted file mode 100644
index e8e07f5..0000000
--- a/guts/getgrent.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Copyright (c) 2010 Wind River Systems; see
- * guts/COPYRIGHT for information.
- *
- * static struct group *
- * wrap_getgrent(void) {
- * struct group * rc = NULL;
- */
- static struct group grp;
- static char grbuf[PSEUDO_PWD_MAX];
- int r_rc;
-
- r_rc = wrap_getgrent_r(&grp, grbuf, PSEUDO_PWD_MAX, &rc);
- /* different error return conventions */
- if (r_rc != 0) {
- errno = r_rc;
- }
-
-/* return rc;
- * }
- */