1
0
forked from aniani/vim

updated for version 7.1-027

This commit is contained in:
Bram Moolenaar
2007-07-10 15:10:54 +00:00
parent 78f6f7eb95
commit fe1c56d6ae
3 changed files with 39 additions and 0 deletions

View File

@@ -508,6 +508,9 @@ int mch_rename __ARGS((const char *src, const char *dest));
#if !defined(S_ISFIFO) && defined(S_IFIFO)
# define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
#endif
#if !defined(S_ISCHR) && defined(S_IFCHR)
# define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
#endif
/* Note: Some systems need both string.h and strings.h (Savage). However,
* some systems can't handle both, only use string.h in that case. */