blob: 2104d80f25b40ed03b201fc9e8d04896da10afff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/**
* The functions regarding DDE/BSD initialization are found here.
*
* \author Thomas Friebel <tf13@os.inf.tu-dresden.de>
*/
#include "ddekit/thread.h"
void ddekit_init(void)
{
ddekit_init_threads();
}
|