repo.or.cz
/
syslinux.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
hdt: Removing builting sleep support in say
[syslinux.git]
/
com32
/
lib
/
chdir.c
blob
00670e352d385fb5a52fa457af9dd9b54012fc5b
1
/*
2
* chdir.c
3
*/
4
5
#include <dirent.h>
6
#include <stdio.h>
7
#include <errno.h>
8
9
#include <com32.h>
10
#include <syslinux/pmapi.h>
11
12
int
chdir
(
const char
*
path
)
13
{
14
return
__com32
.
cs_pm
->
chdir
(
path
);
15
}