diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-03-23 10:41:39 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-03-23 10:41:39 +0000 |
commit | 9849c76d884209eab520ac540a98d202de9adbf5 (patch) | |
tree | 3b4010132687e9dda3c35f90db4354bdeecd2810 | |
parent | e541da93fee32afb38b6ac86cefc62155130861a (diff) |
yet another tiny OS/2 fix
-rw-r--r-- | lib/getpass.c | 2 |
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); } |