aosp12/external/strace/chdir.c

9 lines
94 B
C
Raw Permalink Normal View History

2023-01-09 17:11:35 +08:00
#include "defs.h"
SYS_FUNC(chdir)
{
printpath(tcp, tcp->u_arg[0]);
return RVAL_DECODED;
}