xref: /haiku/src/system/kernel/fs/fifo.h (revision cfc3fa87da824bdf593eb8b817a83b6376e77935)
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 
11 status_t	create_fifo_vnode(fs_volume* superVolume, fs_vnode* vnode);
12 
13 
14 #endif	// _VFS_FIFO_H
15