forked from KolibriOS/kolibrios
16 lines
304 B
C
16 lines
304 B
C
|
#include "math/init.c"
|
||
|
#include "random/init.c"
|
||
|
#include "re/init.c"
|
||
|
#include "ksys/init.c"
|
||
|
#include "pygame/init.c"
|
||
|
#include "bitwise/init.c"
|
||
|
|
||
|
void init_std_modules(TP){
|
||
|
math_init(tp);
|
||
|
random_init(tp);
|
||
|
re_init(tp);
|
||
|
ksys_init(tp);
|
||
|
pygame_init(tp);
|
||
|
bitwise_init(tp);
|
||
|
}
|