mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 20:42:56 +01:00
19 lines
405 B
C++
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();
|
|
}
|