mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-01 11:36:43 +00:00
27 lines
529 B
C
27 lines
529 B
C
|
/*
|
||
|
* \brief Block session initialize function
|
||
|
* \author Josef Soentgen
|
||
|
* \date 2017-03-07
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* Copyright (C) 2017 Genode Labs GmbH
|
||
|
*
|
||
|
* This file is part of the Genode OS framework, which is distributed
|
||
|
* under the terms of the GNU Affero General Public License version 3.
|
||
|
*/
|
||
|
|
||
|
#ifndef _INCLUDE__FFAT__BLOCK_H_
|
||
|
#define _INCLUDE__FFAT__BLOCK_H_
|
||
|
|
||
|
namespace Genode {
|
||
|
struct Env;
|
||
|
struct Allocator;
|
||
|
}
|
||
|
|
||
|
namespace Ffat {
|
||
|
void block_init(Genode::Env &, Genode::Allocator &heap);
|
||
|
}
|
||
|
|
||
|
#endif /* _INCLUDE__FFAT__BLOCK_H_ */
|