Sign in
android
/
platform
/
external
/
syslinux
/
refs/heads/oreo-mr1-release
/
.
/
com32
/
lib
/
getcwd.c
blob: d5fa9d7def1d984da928eb16891cc2509f9bfb61 [
file
] [
log
] [
blame
] [
edit
]
/*
* getcwd.c
*/
#include
<com32.h>
#include
<syslinux/pmapi.h>
#include
<fs.h>
char
*
getcwd
(
char
*
buf
,
size_t
size
)
{
return
core_getcwd
(
buf
,
size
);
}