blob: 1a92a26311c54394bd0871b1523f1a7e715a9b51 [file] [log] [blame]
Dmitry V. Levin2aa180e2015-11-22 18:18:43 +00001#include "defs.h"
2
3SYS_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}