genode/repos/ports/src/noux/net/construct.cc
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

21 lines
406 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.
*/
#include <libc/component.h>
#include <construct.h>
void Libc::Component::construct(Libc::Env &env)
{
noux_construct(env);
}