Subversion Repositories Kolibri OS

Rev

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