mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
prototype for getpass
This commit is contained in:
parent
83b6c9e052
commit
ef839c73d7
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue