0
0
mirror of https://github.com/vim/vim.git synced 2025-10-06 05:44:14 -04:00

updated for version 7.3.1007

Problem:    Can't build on Minix 3.2.1.
Solution:   Add a condition to an #ifdef. (Gautam Tirumala)
This commit is contained in:
Bram Moolenaar
2013-05-23 22:27:03 +02:00
parent 307d10a2fb
commit a03dbed9e9
2 changed files with 3 additions and 1 deletions

View File

@@ -127,7 +127,7 @@ mf_open(fname, flags)
{
memfile_T *mfp;
off_t size;
#if defined(STATFS) && defined(UNIX) && !defined(__QNX__)
#if defined(STATFS) && defined(UNIX) && !defined(__QNX__) && !defined(__minix)
# define USE_FSTATFS
struct STATFS stf;
#endif