Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #include "math/init.c"
  2. #include "random/init.c"
  3. #include "re/init.c"
  4. #include "ksys/init.c"
  5. #include "pygame/init.c"
  6. #include "bitwise/init.c"
  7.  
  8. void init_std_modules(TP){
  9.       math_init(tp);
  10.       random_init(tp);
  11.       re_init(tp);
  12.       ksys_init(tp);
  13.       pygame_init(tp);
  14.       bitwise_init(tp);
  15. }
  16.