repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add memtest support.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
getcwd.c
blob
d5fa9d7def1d984da928eb16891cc2509f9bfb61
1
/*
2
* getcwd.c
3
*/
4
5
#include <com32.h>
6
#include <syslinux/pmapi.h>
7
#include <fs.h>
8
9
char
*
getcwd
(
char
*
buf
,
size_t
size
)
10
{
11
return
core_getcwd
(
buf
,
size
);
12
}