ack/mach/minixST/libsys/_chdir.c

10 lines
137 B
C
Raw Normal View History

#include <lib.h>
#define chdir _chdir
#include <unistd.h>
PUBLIC int chdir(name)
char *name;
{
return(_callm3(FS, CHDIR, 0, name));
}