Replace use of mch_rename with rename.

The macro mch_rename is no longer necessary, because C99 function rename
is always available.
This commit is contained in:
oni-link
2014-04-01 17:09:53 +02:00
committed by Thiago de Arruda
parent c30c9b275c
commit c298edd5dc
2 changed files with 6 additions and 8 deletions

View File

@@ -251,8 +251,6 @@
# define DFLT_MAXMEMTOT (10*1024) /* use up to 10 Mbyte for Vim */
# endif
#define mch_rename(src, dst) rename(src, dst)
#if !defined(S_ISDIR) && defined(S_IFDIR)
# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
#endif