Dmitry V. Levin
9b2f674adb
* chdir.c: New file. * Makefile.am (strace_SOURCES): Add it. * file.c (sys_chdir): Move to chdir.c.
11 lines
123 B
C
11 lines
123 B
C
#include "defs.h"
|
|
|
|
int
|
|
sys_chdir(struct tcb *tcp)
|
|
{
|
|
if (entering(tcp)) {
|
|
printpath(tcp, tcp->u_arg[0]);
|
|
}
|
|
return 0;
|
|
}
|