forked from KolibriOS/kolibrios
b29cc6670d
- Non-working trash is cleaned. - Updated from latest git version. - Fixed modules pygame math and others. - Removed old modules added new ones. - All samples work except "net" git-svn-id: svn://kolibrios.org@8535 a494cfbc-eb01-0410-851d-a64ba20cac60
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);
|
|
}
|