Skip to content

Commit 4ef79b5

Browse files
Remove unused prototype for getpass(). (#123)
This function wasn't actually used here, which is good since it is long deprecated.
1 parent a6ef508 commit 4ef79b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/uutils.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ int c_string_to_lisp_string(char *C, LispPTR Lisp) {
142142
LispPTR check_unix_password(LispPTR *args) {
143143
#ifndef DOS
144144
struct passwd *pwd;
145-
char *password, *getpass(const char *);
145+
char *password;
146146
#ifndef OS5
147147
char *crypt(const char *, const char *);
148148
#endif /* OS5 */

0 commit comments

Comments
 (0)