allwinner_a64/android/external/syslinux/com32/lib/getcwd.c
2018-08-08 16:14:42 +08:00

12 lines
160 B
C

/*
* getcwd.c
*/
#include <com32.h>
#include <syslinux/pmapi.h>
#include <fs.h>
char *getcwd(char *buf, size_t size)
{
return core_getcwd(buf, size);
}