genode/repos/ports/src/noux/construct.h
Sebastian Sumpf 2000b7c0e6 noux: add generic construction function
This function ('noux_construct') is called from each back-end's
construct method (libc or Genode component).

fixes #2291
2017-02-28 12:59:32 +01:00

22 lines
443 B
C++

/**
* \brief Noux initialization
* \author Sebastian Sumpf
* \date 2017-02-24
*/
/*
* 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 __NOUX_CONSTRUCT_H_
#define __NOUX_CONSTRUCT_H_
namespace Genode { class Env; }
void noux_construct(Genode::Env &env);
#endif /* __NOUX_CONSTRUCT_H_ */