aboutsummaryrefslogtreecommitdiffstats
path: root/getpass.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2004-06-11 19:42:04 +0000
committerMatthias Andree <matthias.andree@gmx.de>2004-06-11 19:42:04 +0000
commit5bbed890029e6b965a32317763ef33c9b3178550 (patch)
tree2ef5a2d14f8451b4889c7aeb3b69428c9fbfd009 /getpass.c
parentd78b61e3efaea197a6e5b2b72bf2981a9ed69461 (diff)
downloadfetchmail-5bbed890029e6b965a32317763ef33c9b3178550.tar.gz
fetchmail-5bbed890029e6b965a32317763ef33c9b3178550.tar.bz2
fetchmail-5bbed890029e6b965a32317763ef33c9b3178550.zip
Quench some GCC 3.4 warnings by making sure that all int arguments are marked int and swapping words so that static is first in the line.
svn path=/trunk/; revision=3882
Diffstat (limited to 'getpass.c')
-rw-r--r--getpass.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/getpass.c b/getpass.c
index c34f7686..8fe34e5d 100644
--- a/getpass.c
+++ b/getpass.c
@@ -56,9 +56,9 @@ static int ttyfd;
#endif
#endif
-void static save_tty_state(void);
-void static disable_tty_echo(void);
-void static restore_tty_state(void);
+static void save_tty_state(void);
+static void disable_tty_echo(void);
+static void restore_tty_state(void);
static RETSIGTYPE sigint_handler(int);
char *fm_getpassword(prompt)