mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 21:06:52 +03:00
27 lines
350 B
C
27 lines
350 B
C
/*
|
|
* These are functions that miss from vfs.c to make it complete library
|
|
*/
|
|
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
#include <sys/types.h>
|
|
#include <sys/wait.h>
|
|
|
|
void vfs_init( void );
|
|
void ftpfs_init_passwd( void );
|
|
|
|
char *mc_home = LIBDIR;
|
|
|
|
void
|
|
mc_vfs_init( void )
|
|
{
|
|
vfs_init();
|
|
ftpfs_init_passwd();
|
|
}
|
|
|
|
void
|
|
mc_vfs_done( void )
|
|
{
|
|
vfs_shut();
|
|
}
|