| To: vim_dev@googlegroups.com |
| Subject: Patch 7.4.644 |
| Fcc: outbox |
| From: Bram Moolenaar <Bram@moolenaar.net> |
| Mime-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| |
| |
| Patch 7.4.644 |
| Problem: Stratus VOS doesn't have sync(). |
| Solution: Use fflush(). (Karli Aurelia) |
| Files: src/memfile.c |
| |
| |
| |
| |
| |
| *** 639,645 **** |
| # endif |
| /* OpenNT is strictly POSIX (Benzinger) */ |
| /* Tandem/Himalaya NSK-OSS doesn't have sync() */ |
| ! # if defined(__OPENNT) || defined(__TANDEM) |
| fflush(NULL); |
| # else |
| sync(); |
| --- 639,646 ---- |
| # endif |
| /* OpenNT is strictly POSIX (Benzinger) */ |
| /* Tandem/Himalaya NSK-OSS doesn't have sync() */ |
| ! /* No sync() on Stratus VOS */ |
| ! # if defined(__OPENNT) || defined(__TANDEM) || defined(__VOS__) |
| fflush(NULL); |
| # else |
| sync(); |
| |
| |
| |
| *** 743,744 **** |
| --- 743,746 ---- |
| { /* Add new patch number below this line */ |
| + /**/ |
| + 644, |
| /**/ |
| |
| -- |
| This is an airconditioned room, do not open Windows. |
| |
| /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ |
| /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ |
| \\\ an exciting new programming language -- http://www.Zimbu.org /// |
| \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |