Update.
[glibc.git] / include / pwd.h
blob18e8ac7e940e6084a8e551106b3df14020653f96
1 #ifndef _PWD_H
2 #include <pwd/pwd.h>
4 /* Now define the internal interfaces. */
5 extern int __getpwent_r __P ((struct passwd *__resultbuf, char *__buffer,
6 size_t __buflen, struct passwd **__result));
7 extern int __getpwuid_r __P ((__uid_t __uid, struct passwd *__resultbuf,
8 char *__buffer, size_t __buflen,
9 struct passwd **__result));
10 extern int __getpwnam_r __P ((__const char *__name, struct passwd *__resultbuf,
11 char *__buffer, size_t __buflen,
12 struct passwd **__result));
13 extern int __fgetpwent_r __P ((FILE * __stream, struct passwd *__resultbuf,
14 char *__buffer, size_t __buflen,
15 struct passwd **__result));
16 #endif