aboutsummaryrefslogtreecommitdiffstats
path: root/guts/getpwent_r.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/getpwent_r.c')
-rw-r--r--guts/getpwent_r.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/guts/getpwent_r.c b/guts/getpwent_r.c
deleted file mode 100644
index d55763e..0000000
--- a/guts/getpwent_r.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Copyright (c) 2010 Wind River Systems; see
- * guts/COPYRIGHT for information.
- *
- * static int
- * wrap_getpwent_r(struct passwd *pwbuf, char *buf, size_t buflen, struct passwd **pwbufp) {
- * int rc = -1;
- */
-
- /* note that we don't wrap fgetpwent_r, since there's no path
- * references in it.
- */
- if (!pseudo_pwd) {
- errno = ENOENT;
- return -1;
- }
- return fgetpwent_r(pseudo_pwd, pwbuf, buf, buflen, pwbufp);
-
-/* return rc;
- * }
- */