]> granicus.if.org Git - strace/blob - ioperm.c
tests: fix expected output in strace-tt.test
[strace] / ioperm.c
1 #include "defs.h"
2
3 SYS_FUNC(ioperm)
4 {
5         tprintf("%#lx, %#lx, %d",
6                 tcp->u_arg[0], tcp->u_arg[1], (int) tcp->u_arg[2]);
7
8         return RVAL_DECODED;
9 }