1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-15 07:54:13 +00:00

Remove unused prototype for getpass(). (#123)

This function wasn't actually used here, which is good since it
is long deprecated.
This commit is contained in:
Bruce Mitchener 2020-12-23 14:06:14 +07:00 committed by GitHub
parent a6ef508a7c
commit 4ef79b54a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -142,7 +142,7 @@ int c_string_to_lisp_string(char *C, LispPTR Lisp) {
LispPTR check_unix_password(LispPTR *args) {
#ifndef DOS
struct passwd *pwd;
char *password, *getpass(const char *);
char *password;
#ifndef OS5
char *crypt(const char *, const char *);
#endif /* OS5 */