mirror of git://git.musl-libc.org/musl
prototype for getpass
This commit is contained in:
parent
83b6c9e052
commit
ef839c73d7
|
@ -31,6 +31,10 @@ struct passwd *getpwnam (const char *);
|
||||||
int getpwuid_r (uid_t, struct passwd *, char *, size_t, struct passwd **);
|
int getpwuid_r (uid_t, struct passwd *, char *, size_t, struct passwd **);
|
||||||
int getpwnam_r (const char *, 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
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue