yet another tiny OS/2 fix
authorDaniel Stenberg <daniel@haxx.se>
Thu, 23 Mar 2000 10:41:39 +0000 (10:41 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 23 Mar 2000 10:41:39 +0000 (10:41 +0000)
lib/getpass.c

index 4a87145..59eedcb 100644 (file)
@@ -175,7 +175,9 @@ char *getpass(const char *prompt)
 #endif
   
   signal(SIGINT, sigint);
+#ifndef __EMX__
   signal(SIGTSTP, sigtstp);
+#endif
 
   return(buf);
 }