]> granicus.if.org Git - strace/blob - chdir.c
process.c: move sched_setaffinity and sched_getaffinity parsers to a separate file
[strace] / chdir.c
1 #include "defs.h"
2
3 int
4 sys_chdir(struct tcb *tcp)
5 {
6         if (entering(tcp)) {
7                 printpath(tcp, tcp->u_arg[0]);
8         }
9         return 0;
10 }