/** * \brief Rump initialization and required header * \author Sebastian Sumpf * \date 2014-01-17 */ /* * Copyright (C) 2014 Genode Labs GmbH * * This file is part of the Genode OS framework, which is distributed * under the terms of the GNU General Public License version 2. */ #ifndef _FILE_SYSTEM_H_ #define _FILE_SYSTEM_H_ extern "C" { #include #include #include #include #include #include #include #include #include } #include #include namespace File_system { void init(Server::Entrypoint &ep); bool supports_symlinks(); } extern int errno; #endif /* _FILE_SYSTEM_H_ */