comparison src/vim.h @ 2668:bfade53bcafb v7.3.087

updated for version 7.3.087 Problem: EINTR is not always defined. Solution: Include errno.h in vim.h.
author Bram Moolenaar <bram@vim.org>
date Fri, 17 Dec 2010 20:24:01 +0100
parents 1a0d346695fa
children 6a2e4860134b
comparison
equal deleted inserted replaced
2667:a53e7d3fd741 2668:bfade53bcafb
476 #ifdef _DCC 476 #ifdef _DCC
477 # include <sys/stat.h> 477 # include <sys/stat.h>
478 #endif 478 #endif
479 #if defined(MSDOS) || defined(MSWIN) 479 #if defined(MSDOS) || defined(MSWIN)
480 # include <sys/stat.h> 480 # include <sys/stat.h>
481 #endif
482
483 #if defined(HAVE_ERRNO_H) || defined(DJGPP) || defined(WIN16) \
484 || defined(WIN32) || defined(_WIN64) || defined(__EMX__)
485 # include <errno.h>
481 #endif 486 #endif
482 487
483 /* 488 /*
484 * Allow other (non-unix) systems to configure themselves now 489 * Allow other (non-unix) systems to configure themselves now
485 * These are also in os_unix.h, because osdef.sh needs them there. 490 * These are also in os_unix.h, because osdef.sh needs them there.