Mercurial > vim
comparison src/fileio.c @ 1076:17b9587ff6d5 v7.0.202
updated for version 7.0-202
author | vimboss |
---|---|
date | Tue, 27 Feb 2007 15:48:28 +0000 |
parents | b4d11ddb7303 |
children | 1df41c98fc2e |
comparison
equal
deleted
inserted
replaced
1075:21ce954cbdca | 1076:17b9587ff6d5 |
---|---|
1120 #endif | 1120 #endif |
1121 { | 1121 { |
1122 if (!skip_read) | 1122 if (!skip_read) |
1123 { | 1123 { |
1124 #if SIZEOF_INT > 2 | 1124 #if SIZEOF_INT > 2 |
1125 # ifdef __TANDEM | 1125 # if defined(SSIZE_MAX) && (SSIZE_MAX < 0x10000L) |
1126 size = SSIZE_MAX; /* use max I/O size, 52K */ | 1126 size = SSIZE_MAX; /* use max I/O size, 52K */ |
1127 # else | 1127 # else |
1128 size = 0x10000L; /* use buffer >= 64K */ | 1128 size = 0x10000L; /* use buffer >= 64K */ |
1129 # endif | 1129 # endif |
1130 #else | 1130 #else |