Files
2023-05-14 11:44:44 +00:00

9 lines
94 B
C

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