]> granicus.if.org Git - strace/blob - chdir.c
Change unix_diag requests to use exact match instead of full dump
[strace] / chdir.c
1 #include "defs.h"
2
3 SYS_FUNC(chdir)
4 {
5         printpath(tcp, tcp->u_arg[0]);
6
7         return RVAL_DECODED;
8 }