diff options
author | Erik Faye-Lund <kusmabite@gmail.com> | 2012-12-04 09:10:42 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-12-04 08:03:42 -0800 |
commit | f7a4cea25e3ee1c8f27777bc4293dca0210fa573 (patch) | |
tree | 54abe0aecdbfadfcb55e1d5c983b4faec966c541 /compat/mingw.h | |
parent | mingw: reuse tty-version of git_terminal_prompt (diff) | |
download | tgif-f7a4cea25e3ee1c8f27777bc4293dca0210fa573.tar.xz |
mingw: get rid of getpass implementation
There's no remaining call-sites, and as pointed out in the
previous commit message, it's not quite ideal. So let's just
lose it.
Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat/mingw.h')
-rw-r--r-- | compat/mingw.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compat/mingw.h b/compat/mingw.h index 68db8b7f7d..685cd2c3d4 100644 --- a/compat/mingw.h +++ b/compat/mingw.h @@ -55,8 +55,6 @@ struct passwd { char *pw_dir; }; -extern char *getpass(const char *prompt); - typedef void (__cdecl *sig_handler_t)(int); struct sigaction { sig_handler_t sa_handler; |