13 lines
177 B
C
13 lines
177 B
C
|
#include <lib.h>
|
||
|
#define chdir _chdir
|
||
|
#include <unistd.h>
|
||
|
|
||
|
PUBLIC int chdir(name)
|
||
|
_CONST char *name;
|
||
|
{
|
||
|
message m;
|
||
|
|
||
|
_loadname(name, &m);
|
||
|
return(_syscall(FS, CHDIR, &m));
|
||
|
}
|