summary refs log tree commit diff
path: root/glibc-compat/include/pwd.h
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2005-06-27 13:24:44 +0000
committerJakub Jelinek <jakub@redhat.com>2005-06-27 13:24:44 +0000
commit03d65262fdcc287ef8b691c7dff2f1a63cdd13c2 (patch)
treea8ac7c86519f55a4aadf31b0c9e075eaf96ea0e3 /glibc-compat/include/pwd.h
parent5570fbd25a574d54ab135e1d3cdac0bc74029689 (diff)
downloadglibc-03d65262fdcc287ef8b691c7dff2f1a63cdd13c2.tar.gz
glibc-03d65262fdcc287ef8b691c7dff2f1a63cdd13c2.tar.xz
glibc-03d65262fdcc287ef8b691c7dff2f1a63cdd13c2.zip
Diffstat (limited to 'glibc-compat/include/pwd.h')
-rw-r--r--glibc-compat/include/pwd.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/glibc-compat/include/pwd.h b/glibc-compat/include/pwd.h
deleted file mode 100644
index a0e94e6631..0000000000
--- a/glibc-compat/include/pwd.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef _PWD_H
-#include <pwd/pwd.h>
-
-/* Now define the internal interfaces.  */
-extern int __getpwent_r (struct passwd *__resultbuf, char *__buffer,
-			 size_t __buflen, struct passwd **__result);
-extern int __old_getpwent_r (struct passwd *__resultbuf, char *__buffer,
-			     size_t __buflen, struct passwd **__result);
-extern int __getpwuid_r (__uid_t __uid, struct passwd *__resultbuf,
-			 char *__buffer, size_t __buflen,
-			 struct passwd **__result);
-extern int __old_getpwuid_r (__uid_t __uid, struct passwd *__resultbuf,
-			     char *__buffer, size_t __buflen,
-			     struct passwd **__result);
-extern int __getpwnam_r (__const char *__name, struct passwd *__resultbuf,
-			 char *__buffer, size_t __buflen,
-			 struct passwd **__result);
-extern int __old_getpwnam_r (__const char *__name, struct passwd *__resultbuf,
-			     char *__buffer, size_t __buflen,
-			     struct passwd **__result);
-extern int __fgetpwent_r (FILE * __stream, struct passwd *__resultbuf,
-			  char *__buffer, size_t __buflen,
-			  struct passwd **__result);
-
-#endif