aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/getpass.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/getpass.c b/lib/getpass.c
index 4a87145ab..59eedcb4c 100644
--- a/lib/getpass.c
+++ b/lib/getpass.c
@@ -175,7 +175,9 @@ char *getpass(const char *prompt)
#endif
signal(SIGINT, sigint);
+#ifndef __EMX__
signal(SIGTSTP, sigtstp);
+#endif
return(buf);
}