1/*
2 * Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _VFS_FIFO_H
6#define _VFS_FIFO_H
7
8#include <fs_interface.h>
9
10
11status_t	create_fifo_vnode(fs_volume* superVolume, fs_vnode* vnode);
12void		fifo_init();
13
14
15#endif	// _VFS_FIFO_H
16