#ifndef KERNEL_VFS_TMPFS_H #define KERNEL_VFS_TMPFS_H #include "../vfs.h" /* Operations */ extern SuperOps tmpfsSuperOps; extern InodeOps tmpfsInodeOps; extern FileOps tmpfsFileOps; extern FileSystemType tmpfsType; #endif