Home | History | Annotate | Download | only in lib
      1 /*
      2  * getcwd.c
      3  */
      4 
      5 #include <com32.h>
      6 #include <syslinux/pmapi.h>
      7 #include <fs.h>
      8 
      9 char *getcwd(char *buf, size_t size)
     10 {
     11     return core_getcwd(buf, size);
     12 }
     13