prototype for getpass

This commit is contained in:
Rich Felker 2011-03-28 20:43:51 -04:00
parent 83b6c9e052
commit ef839c73d7
1 changed files with 4 additions and 0 deletions

View File

@ -31,6 +31,10 @@ struct passwd *getpwnam (const char *);
int getpwuid_r (uid_t, struct passwd *, char *, size_t, struct passwd **);
int getpwnam_r (const char *, struct passwd *, char *, size_t, struct passwd **);
#ifdef _GNU_SOURCE
char *getpass(const char *);
#endif
#ifdef __cplusplus
}
#endif