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

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

char *getcwd(char *buf, size_t size)
{
    return __com32.cs_pm->getcwd(buf, size);
}