Subversion Repositories Kolibri OS

Rev

Rev 8622 | Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. #include <math.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include <stdlib.h>
  5. #include <time.h>
  6. #include <sys/dirent.h>
  7. #include <ksys.h>
  8. #include <shell_api.h>
  9.  
  10. ksys_coff_etable_t EXPORTS[] = {
  11.     {"abs", abs},
  12.     {"acos", acos},
  13.     {"acosh", acosh},
  14.     {"asin", asin},
  15.     {"asinh", asinh},
  16.     {"atan", atan},
  17.     {"atan2", atan2},
  18.     {"atanh", atanh},
  19.     {"atoi", atoi},
  20.     {"atol", atol},
  21.     {"atoll", atoll},
  22.     {"calloc", calloc},
  23.     {"ceil", ceil},
  24.     {"clearerr", clearerr},
  25.     {"closedir", closedir},
  26.     {"cos", cos},
  27.     {"cosh", cosh},
  28.     {"debug_printf", debug_printf},
  29.     {"difftime", difftime},
  30.     {"div", div},
  31.     {"exit", exit},
  32.     {"exp", exp},
  33.     {"fabs", fabs},
  34.     {"fclose", fclose},
  35.     {"feof", feof},
  36.     {"ferror", ferror},
  37.     {"fflush", fflush},
  38.     {"fgetc", fgetc},
  39.     {"fgetpos", fgetpos},
  40.     {"fgets", fgets},
  41.     {"floor", floor},
  42.     {"fmod", fmod},
  43.     {"fopen", fopen},
  44.     {"fputc", fputc},
  45.     {"fputs", fputs},
  46.     {"fread", fread},
  47.     {"free", free},
  48.     {"freopen", freopen},
  49.     {"frexp", frexp},
  50.     {"fseek", fseek},
  51.     {"fsetpos", fsetpos},
  52.     {"ftell", ftell},
  53.     {"fwrite", fwrite},
  54.     {"getchar", getchar},
  55.     {"gets", gets},
  56.     {"hypot", hypot},
  57.     {"itoa", itoa},
  58.     {"labs", labs},
  59.     {"ldexp", ldexp},
  60.     {"ldiv", ldiv},
  61.     {"llabs", llabs},
  62.     {"lldiv", lldiv},
  63.     {"localtime", localtime},
  64.     {"log", log},
  65.     {"malloc", malloc},
  66.     {"memccpy", memccpy},
  67.     {"memchr", memchr},
  68.     {"memcmp", memcmp},
  69.     {"memcpy", memcpy},
  70.     {"memmove", memmove},
  71.     {"memset", memset},
  72.     {"mktime", mktime},
  73.     {"modf", modf},
  74.     {"modfl", modfl},
  75.     {"opendir", opendir},
  76.     {"perror", perror},
  77.     {"pow", pow},
  78.     {"pow10", pow10},
  79.     {"pow2", pow2},
  80.     {"printf", printf},
  81.     {"puts", puts},
  82.     {"readdir", readdir},
  83.     {"realloc", realloc},
  84.     {"remove", remove},
  85.     {"rename", rename},
  86.     {"rewind", rewind},
  87.     {"rewinddir", rewinddir},
  88.     {"seekdir", seekdir},
  89.     {"shell_printf", shell_printf},
  90.     {"shell_puts", shell_puts},
  91.     {"shell_putc", shell_putc},
  92.     {"shell_getc", shell_getc},
  93.     {"shell_gets", shell_gets},
  94.     {"shell_cls", shell_cls},
  95.     {"shell_exit", shell_exit},
  96.     {"setbuf", setbuf},
  97.     {"setvbuf", setvbuf},
  98.     {"sin", sin},
  99.     {"sinh", sinh},
  100.     {"snprintf", snprintf},
  101.     {"sprintf", sprintf},
  102.     {"sqrt", sqrt},
  103.     {"strcat", strcat},
  104.     {"strchr", strchr},
  105.     {"strcmp", strcmp},
  106.     {"strcoll", strcoll},
  107.     {"strcpy", strcpy},
  108.     {"strcspn", strcspn},
  109.     {"strerror", strerror},
  110.     {"strlen", strlen},
  111.     {"strncat", strncat},
  112.     {"strncmp", strncmp},
  113.     {"strncpy", strncpy},
  114.     {"strpbrk", strpbrk},
  115.     {"strrchr", strrchr},
  116.     {"strrev", strrev},
  117.     {"strspn", strspn},
  118.     {"strstr", strstr},
  119.     {"strtok", strtok},
  120.     {"strxfrm", strxfrm},
  121.     {"tan", tan},
  122.     {"tanh", tanh},
  123.     {"telldir", telldir},
  124.     {"time", time},
  125.     {"tmpfile", tmpfile},
  126.     {"tmpnam", tmpnam},
  127.     {"vprintf", vprintf},
  128.     {"vsnprintf", vsnprintf},
  129.     0
  130. };
  131.