diff options
Diffstat (limited to 'src/getpass.c')
-rw-r--r-- | src/getpass.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/getpass.c b/src/getpass.c index 975ce1dde..4743f9a4f 100644 --- a/src/getpass.c +++ b/src/getpass.c @@ -36,6 +36,8 @@ #ifndef HAVE_GETPASS_R +#include "getpass.h" + #ifndef WIN32 #ifdef VMS #include <stdio.h> @@ -101,9 +103,9 @@ char *getpass_r(const char *prompt, char *buffer, size_t buflen) FILE *infp; char infp_fclose = 0; FILE *outfp; - RETSIGTYPE (*sigint)(); + RETSIGTYPE (*sigint)(int); #ifdef SIGTSTP - RETSIGTYPE (*sigtstp)(); + RETSIGTYPE (*sigtstp)(int); #endif size_t bytes_read; int infd; |