aboutsummaryrefslogtreecommitdiff
path: root/lib/getpass.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-03-23 10:41:39 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-03-23 10:41:39 +0000
commit9849c76d884209eab520ac540a98d202de9adbf5 (patch)
tree3b4010132687e9dda3c35f90db4354bdeecd2810 /lib/getpass.c
parente541da93fee32afb38b6ac86cefc62155130861a (diff)
yet another tiny OS/2 fix
Diffstat (limited to 'lib/getpass.c')
-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);
}