summaryrefslogtreecommitdiff
path: root/com32/lib/getcwd.c
blob: d5fa9d7def1d984da928eb16891cc2509f9bfb61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * getcwd.c
 */

#include <com32.h>
#include <syslinux/pmapi.h>
#include <fs.h>

char *getcwd(char *buf, size_t size)
{
    return core_getcwd(buf, size);
}