9 lines
94 B
C
9 lines
94 B
C
#include "defs.h"
|
|
|
|
SYS_FUNC(chdir)
|
|
{
|
|
printpath(tcp, tcp->u_arg[0]);
|
|
|
|
return RVAL_DECODED;
|
|
}
|