1/*
2 * Copyright 2011, Oliver Tappe <zooey@hirschkaefer.de>
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef KERNEL_INTERFACE_H
6#define KERNEL_INTERFACE_H
7
8
9#include <fs_interface.h>
10
11
12extern fs_volume_ops gBindFSVolumeOps;
13extern fs_vnode_ops gBindFSVnodeOps;
14
15
16#endif	// KERNEL_INTERFACE_H
17