genode/libports/src/lib/python/libc_plugin_init.cc
2012-01-03 15:35:05 +01:00

19 lines
405 B
C++

/**
* \brief Constructor for libc plugin
* \author Sebastian Sumpf
* \date 2010-02-17
*/
/*
* Copyright (C) 2010-2012 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.
*/
void __attribute__((constructor)) init_libc_plugin(void)
{
extern void create_libc_plugin();
create_libc_plugin();
}