Subversion Repositories Kolibri OS

Rev

Rev 8535 | 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. #include "file/init.c"
  8. //#include "socket/socket.c"
  9.  
  10. void init_std_modules(TP){
  11.       math_init(tp);
  12.       random_init(tp);
  13.       re_init(tp);
  14.       ksys_init(tp);
  15.       file_init(tp);
  16.       //socket_init(tp);
  17.       pygame_init(tp);
  18.       bitwise_init(tp);
  19. }
  20.