1 #include "defs.h" 2 SYS_FUNC(fchownat)3 SYS_FUNC(fchownat) 4 { 5 print_dirfd(tcp, tcp->u_arg[0]); 6 printpath(tcp, tcp->u_arg[1]); 7 printuid(", ", tcp->u_arg[2]); 8 printuid(", ", tcp->u_arg[3]); 9 tprints(", "); 10 printflags(at_flags, tcp->u_arg[4], "AT_???"); 11 12 return RVAL_DECODED; 13 } 14