Orion
Barry Importing existing Orion kernel d41a53c (2 years, 4 months ago)diff --git a/vfs/tmpfs/fs.h b/vfs/tmpfs/fs.h new file mode 100644 index 0000000..104f64d --- /dev/null +++ b/vfs/tmpfs/fs.h @@ -0,0 +1,13 @@ +#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