aboutsummaryrefslogtreecommitdiffstats
path: root/istream.c
diff options
context:
space:
mode:
Diffstat (limited to 'istream.c')
-rw-r--r--istream.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/istream.c b/istream.c
index 252ce98..91766e5 100644
--- a/istream.c
+++ b/istream.c
@@ -1,4 +1,4 @@
-/* $Id: istream.c,v 1.20 2003/01/20 15:25:30 ukai Exp $ */
+/* $Id: istream.c,v 1.21 2003/02/18 15:43:25 ukai Exp $ */
#include "fm.h"
#include "myctype.h"
#include "istream.h"
@@ -183,9 +183,9 @@ ISclose(InputStream stream)
if (stream == NULL || stream->base.close == NULL ||
stream->base.type & IST_UNCLOSE)
return -1;
- prevtrap = signal(SIGINT, SIG_IGN);
+ prevtrap = mySignal(SIGINT, SIG_IGN);
stream->base.close(stream->base.handle);
- signal(SIGINT, prevtrap);
+ mySignal(SIGINT, prevtrap);
return 0;
}