From ca10b1ff596074634c868b097680d5789b1bd6af Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Tue, 22 Dec 2020 23:47:16 +0700 Subject: [PATCH] Remove unused prototype for getpass(). This function wasn't actually used here, which is good since it is long deprecated. --- src/uutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uutils.c b/src/uutils.c index 9d83bc72..04e82bca 100644 --- a/src/uutils.c +++ b/src/uutils.c @@ -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 */