9 lines
110 B
C
9 lines
110 B
C
|
#include <lib.h>
|
||
|
#define chdir _chdir
|
||
|
|
||
|
int chdir(name)
|
||
|
char *name;
|
||
|
{
|
||
|
return(_callm3(FS, CHDIR, 0, name));
|
||
|
}
|