2023-11-16 23:19:36 -05:00

13 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);
}