Subversion Repositories Kolibri OS

Rev

Rev 9846 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #include <setjmp.h>
  2.  
  3. #include "libtcc1/libtcc1.c"
  4. #include "ctype/is.c"
  5. #include "ctype/tolower.c"
  6. #include "ctype/toupper.c"
  7.  
  8. #include "sys/closedir.c"
  9. #include "sys/dir.c"
  10. #include "sys/opendir.c"
  11. #include "sys/readdir.c"
  12. #include "sys/rewinddir.c"
  13. #include "sys/seekdir.c"
  14. #include "sys/socket.c"
  15. #include "sys/telldir.c"
  16.  
  17. #include "stdio/clearerr.c"
  18. #include "stdio/conio.c"
  19. #include "stdio/debug_printf.c"
  20. #include "stdio/fclose.c"
  21. #include "stdio/feof.c"
  22. #include "stdio/ferror.c"
  23. #include "stdio/fflush.c"
  24. #include "stdio/fgetc.c"
  25. #include "stdio/fgetpos.c"
  26. #include "stdio/fgets.c"
  27. #include "stdio/fopen.c"
  28. #include "stdio/format_print.c"
  29. #include "stdio/fprintf.c"
  30. #include "stdio/fputc.c"
  31. #include "stdio/fputs.c"
  32. #include "stdio/fread.c"
  33. #include "stdio/freopen.c"
  34. #include "stdio/fscanf.c"
  35. #include "stdio/fseek.c"
  36. #include "stdio/fsetpos.c"
  37. #include "stdio/ftell.c"
  38. #include "stdio/fwrite.c"
  39. #include "stdio/getchar.c"
  40. #include "stdio/gets.c"
  41. #include "stdio/perror.c"
  42. #include "stdio/printf.c"
  43. #include "stdio/puts.c"
  44. #include "stdio/remove.c"
  45. #include "stdio/rename.c"
  46. #include "stdio/rewind.c"
  47. #include "stdio/scanf.c"
  48. #include "stdio/setbuf.c"
  49. #include "stdio/setvbuf.c"
  50. #include "stdio/snprintf.c"
  51. #include "stdio/sprintf.c"
  52. #include "stdio/sscanf.c"
  53. #include "stdio/strntoumax.c"
  54. #include "stdio/tmpfile.c"
  55. #include "stdio/tmpnam.c"
  56. #include "stdio/ungetc.c"
  57. #include "stdio/vfprintf.c"
  58. #include "stdio/vprintf.c"
  59. #include "stdio/vsnprintf.c"
  60. #include "stdio/vsscanf.c"
  61.  
  62. #include "string/memccpy.c"
  63. #include "string/memchr.c"
  64. #include "string/memcmp.c"
  65. #include "string/memcpy.c"
  66. #include "string/strcat.c"
  67. #include "string/strchr.c"
  68. #include "string/strcmp.c"
  69. #include "string/strcoll.c"
  70. #include "string/strcpy.c"
  71. #include "string/strcspn.c"
  72. #include "string/strdup.c"
  73. #include "string/strerror.c"
  74. #include "string/strlen.c"
  75. #include "string/strncat.c"
  76. #include "string/strncmp.c"
  77. #include "string/strncpy.c"
  78. #include "string/strpbrk.c"
  79. #include "string/strrchr.c"
  80. #include "string/strrev.c"
  81. #include "string/strspn.c"
  82. #include "string/strstr.c"
  83. #include "string/strtok.c"
  84. #include "string/strxfrm.c"
  85. #include "stdlib/abs.c"
  86. #include "stdlib/assert.c"
  87. #include "stdlib/atof.c"
  88. #include "stdlib/atoi.c"
  89. #include "stdlib/atol.c"
  90. #include "stdlib/atoll.c"
  91. #include "stdlib/calloc.c"
  92. #include "stdlib/exit.c"
  93. #include "stdlib/free.c"
  94. #include "stdlib/itoa.c"
  95. #include "stdlib/labs.c"
  96. #include "stdlib/llabs.c"
  97. #include "stdlib/malloc.c"
  98. #include "stdlib/qsort.c"
  99. #include "stdlib/rand.c"
  100. #include "stdlib/realloc.c"
  101. #include "stdlib/strtod.c"
  102. #include "stdlib/strtol.c"
  103.  
  104. #include "math/acosh.c"
  105. #include "math/asinh.c"
  106. #include "math/atanh.c"
  107. #include "math/cosh.c"
  108. #include "math/frexp.c"
  109. #include "math/hypot.c"
  110. #include "math/ldexp.c"
  111. #include "math/sinh.c"
  112. #include "math/tanh.c"
  113.  
  114. #include "time/asctime.c"
  115. #include "time/difftime.c"
  116. #include "time/localtime.c"
  117. #include "time/mktime.c"
  118. #include "time/time.c"
  119.  
  120. #include "misc/basename.c"
  121. #include "misc/dirname.c"
  122.  
  123. ksys_dll_t EXPORTS[] = {
  124.     { "clearerr", &clearerr },
  125.     { "debug_printf", &debug_printf },
  126.     { "fclose", &fclose },
  127.     { "feof", &feof },
  128.     { "ferror", &ferror },
  129.     { "fflush", &fflush },
  130.     { "fgetc", &fgetc },
  131.     { "fgetpos", &fgetpos },
  132.     { "fgets", &fgets },
  133.     { "fopen", &fopen },
  134.     { "fprintf", &fprintf },
  135.     { "fputc", &fputc },
  136.     { "fputs", &fputs },
  137.     { "fread", &fread },
  138.     { "freopen", &freopen },
  139.     { "fscanf", &fscanf },
  140.     { "fseek", &fseek },
  141.     { "fsetpos", &fsetpos },
  142.     { "ftell", &ftell },
  143.     { "fwrite", &fwrite },
  144.     { "getchar", &getchar },
  145.     { "gets", &gets },
  146.     { "perror", &perror },
  147.     { "printf", &printf },
  148.     { "puts", &puts },
  149.     { "remove", &remove },
  150.     { "rename", &rename },
  151.     { "rewind", &rewind },
  152.     { "scanf", &scanf },
  153.     { "setbuf", &setbuf },
  154.     { "setvbuf", &setvbuf },
  155.     { "snprintf", &snprintf },
  156.     { "sprintf", &sprintf },
  157.     { "sscanf", &sscanf },
  158.     { "tmpfile", &tmpfile },
  159.     { "tmpnam", &tmpnam },
  160.     { "vfscanf", &vfscanf },
  161.     { "vprintf", &vprintf },
  162.     { "vfscanf", &vfscanf },
  163.     { "vsprintf", &vsprintf },
  164.     { "vsnprintf", &vsnprintf },
  165.     { "vsscanf", &vsscanf },
  166.     { "ungetc", &ungetc },
  167.     { "abs", &abs },
  168.     { "atoi", &atoi },
  169.     { "atol", &atol },
  170.     { "atoll", &atoll },
  171.     { "atof", &atof },
  172.     { "calloc", &calloc },
  173.     { "exit", &exit },
  174.     { "free", &free },
  175.     { "itoa", &itoa },
  176.     { "labs", &labs },
  177.     { "llabs", &llabs },
  178.     { "malloc", &malloc },
  179.     { "realloc", &realloc },
  180.     { "strtol", &strtol },
  181.     { "srand", &srand },
  182.     { "rand", &rand },
  183.     { "qsort", &qsort },
  184.     { "strtod", &strtod },
  185.     { "__assert_fail", &__assert_fail },
  186.     { "memchr", &memchr },
  187.     { "memcmp", &memcmp },
  188.     { "strncat", &strncat },
  189.     { "strchr", &strchr },
  190.     { "strcat", &strcat },
  191.     { "strcmp", &strcmp },
  192.     { "strcoll", &strcoll },
  193.     { "strcpy", &strcpy },
  194.     { "strcspn", &strcspn },
  195.     { "strdup", &strdup },
  196.     { "strerror", &strerror },
  197.     { "strlen", &strlen },
  198.     { "strncat", &strncat },
  199.     { "strncmp", &strncmp },
  200.     { "strncpy", &strncpy },
  201.     { "strrchr", &strrchr },
  202.     { "strrev", &strrev },
  203.     { "strspn", &strspn },
  204.     { "strstr", &strstr },
  205.     { "strtok", &strtok },
  206.     { "strxfrm", &strxfrm },
  207.     { "__errno", &__errno },
  208.     { "closedir", &closedir },
  209.     { "opendir", &opendir },
  210.     { "readdir", &readdir },
  211.     { "rewinddir", &rewinddir },
  212.     { "seekdir", &seekdir },
  213.     { "telldir", &telldir },
  214.     { "getcwd", &getcwd },
  215.     { "mkdir", &mkdir },
  216.     { "rmdir", &rmdir },
  217.     { "setcwd", &setcwd },
  218.     { "getcwd", &getcwd },
  219.     { "socket", &socket },
  220.     { "close", &close },
  221.     { "bind", &bind },
  222.     { "listen", &listen },
  223.     { "connect", &connect },
  224.     { "accept", &accept },
  225.     { "send", &send },
  226.     { "recv", &recv },
  227.     { "setsockopt", &setsockopt },
  228.     { "socketpair", &socketpair },
  229.     { "acosh", &acosh },
  230.     { "asinh", &asinh },
  231.     { "atanh", &atanh },
  232.     { "frexp", &frexp },
  233.     { "hypot", &hypot },
  234.     { "ldexp", &ldexp },
  235.     { "cosh", &cosh },
  236.     { "sinh", &sinh },
  237.     { "tanh", &tanh },
  238.     { "acos", &acos },
  239.     { "asin", &asin },
  240.     { "atan", &atan },
  241.     { "atan2", &atan2 },
  242.     { "ceil", &ceil },
  243.     { "cos", &cos },
  244.     { "sin", &sin },
  245.     { "tan", &tan },
  246.     { "sqrt", &sqrt },
  247.     { "exp", &exp },
  248.     { "fabs", &fabs },
  249.     { "floor", &floor },
  250.     { "fmod", &fmod },
  251.     { "log", &log },
  252.     { "log2", &log2 },
  253.     { "log10", &log10 },
  254.     { "round", &round },
  255.     { "modf", &modf },
  256.     { "modfl", &modfl },
  257.     { "pow", &pow },
  258.     { "pow2", &pow2 },
  259.     { "pow10", &pow10 },
  260.     { "longjmp", &longjmp },
  261.     { "setjmp", &setjmp },
  262.     { "__is", &__is },
  263.     { "tolower", &tolower },
  264.     { "toupper", &toupper },
  265.     { "con_set_title", &con_set_title },
  266.     { "con_init", &con_init },
  267.     { "con_init_opt", &con_init_opt },
  268.     { "con_write_asciiz", &con_write_asciiz },
  269.     { "con_write_string", &con_write_string },
  270.     { "con_printf", &con_printf },
  271.     { "con_exit", &con_exit },
  272.     { "con_get_flags", &con_get_flags },
  273.     { "con_set_flags", &con_set_flags },
  274.     { "con_kbhit", &con_kbhit },
  275.     { "con_getch", &con_getch },
  276.     { "con_getch2", &con_getch2 },
  277.     { "con_gets", &con_gets },
  278.     { "con_gets2", &con_gets2 },
  279.     { "con_get_font_height", &con_get_font_height },
  280.     { "con_get_cursor_height", &con_get_cursor_height },
  281.     { "con_set_cursor_height", &con_set_cursor_height },
  282.     { "con_cls", &con_cls },
  283.     { "con_get_cursor_pos", &con_get_cursor_pos },
  284.     { "con_set_cursor_pos", &con_set_cursor_pos },
  285.     { "mktime", &mktime },
  286.     { "time", &time },
  287.     { "localtime", &localtime },
  288.     { "asctime", &asctime },
  289.     { "difftime", &difftime },
  290.     { "basename", &basename },
  291.     { "dirname", &dirname },
  292.     NULL
  293. };
  294.