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
Releasing debian version 4.05+dfsg-6+deb7u2.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
getcwd.c
blob
5ce62ec08e6992368f66e248078f864982019d2e
1
/*
2
* getcwd.c
3
*/
4
5
#include <com32.h>
6
#include <syslinux/pmapi.h>
7
8
char
*
getcwd
(
char
*
buf
,
size_t
size
)
9
{
10
return
__com32
.
cs_pm
->
getcwd
(
buf
,
size
);
11
}