• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * getcwd.c
3  */
4 
5 #include <com32.h>
6 #include <syslinux/pmapi.h>
7 #include <fs.h>
8 
getcwd(char * buf,size_t size)9 char *getcwd(char *buf, size_t size)
10 {
11     return core_getcwd(buf, size);
12 }
13