aboutsummaryrefslogtreecommitdiffstats
path: root/istream.h
diff options
context:
space:
mode:
authorAkinori Ito <aito@eie.yz.yamagata-u.ac.jp>2001-11-09 04:59:17 +0000
committerAkinori Ito <aito@eie.yz.yamagata-u.ac.jp>2001-11-09 04:59:17 +0000
commit6c63633545c254dc085402e0f927a6826d1dd229 (patch)
tree0126fb5598304c713ea1276e294da9098b5df3b4 /istream.h
parentInitial revision (diff)
downloadw3m-6c63633545c254dc085402e0f927a6826d1dd229.tar.gz
w3m-6c63633545c254dc085402e0f927a6826d1dd229.zip
Updates from 0.2.1 into 0.2.1-inu-1.5release-0-2-1-inu-1-5
Diffstat (limited to '')
-rw-r--r--istream.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/istream.h b/istream.h
index 8c670d4..b6b4974 100644
--- a/istream.h
+++ b/istream.h
@@ -1,4 +1,4 @@
-/* $Id: istream.h,v 1.1 2001/11/08 05:15:57 a-ito Exp $ */
+/* $Id: istream.h,v 1.2 2001/11/09 04:59:17 a-ito Exp $ */
#ifndef IO_STREAM_H
#define IO_STREAM_H
@@ -145,9 +145,9 @@ extern Str ssl_get_certificate(InputStream stream);
#define ssl_of(stream) ((stream)->ssl.handle->ssl)
#endif
-#ifdef __CYGWIN__
+#ifdef USE_BINMODE_STREAM
#define openIS(path) newInputStream(open((path),O_RDONLY|O_BINARY))
#else
#define openIS(path) newInputStream(open((path),O_RDONLY))
-#endif /* __CYGWIN__ */
+#endif /* USE_BINMODE_STREAM */
#endif