Vhex-kernel/src/kernel/fs/smemfs/filesystem/umount.c

9 lines
147 B
C

#include <kernel/fs/smemfs.h>
/* casio_smem_umount() - Unmount the File System */
int smemfs_umount(void)
{
// Do nothing for now
return (0);
}