aosp12/external/strace/chdir.c

9 lines
94 B
C

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