VFS: removed obsolete src/vfsdummy.h

This commit is contained in:
Enrico Weigelt, metux IT service 2009-12-31 04:48:04 +01:00 committed by Andrew Borodin
parent cb56023b4d
commit f1cf193877
3 changed files with 0 additions and 25 deletions

View File

@ -91,7 +91,6 @@ SRC_mc_keybind = \
SRC_mc_utils = \ SRC_mc_utils = \
util.c util.h \ util.c util.h \
utilunix.c \ utilunix.c \
vfsdummy.h \
unixcompat.h unixcompat.h
SRC_mc_extended_charset = \ SRC_mc_extended_charset = \

View File

@ -92,12 +92,6 @@
#include "textconf.h" #include "textconf.h"
#ifdef ENABLE_VFS
#include "../vfs/vfs.h"
#else
#include "vfsdummy.h"
#endif
extern const char *home_dir; extern const char *home_dir;
#ifdef min #ifdef min

View File

@ -1,18 +0,0 @@
/** \file vfsdummy.h
* \brief Header: replacement for vfs.h if VFS support is disabled
*/
#ifndef MC_VFSDUMMY_H
#define MC_VFSDYMMY_H
#include "global.h" /* glib.h*/
#include "util.h"
static inline int
return_zero (void)
{
return 0;
}
#endif /* MC_VFSDUMMY_H */