]> granicus.if.org Git - curl/commitdiff
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 4a87145ab41e3780f7268f28d67a50529709e9c8..59eedcb4cf0682fc34896c8b7e1450eb270030c0 100644 (file)
@@ -175,7 +175,9 @@ char *getpass(const char *prompt)
 #endif
   
   signal(SIGINT, sigint);
+#ifndef __EMX__
   signal(SIGTSTP, sigtstp);
+#endif
 
   return(buf);
 }