• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "defs.h"
2 
SYS_FUNC(ioperm)3 SYS_FUNC(ioperm)
4 {
5 	tprintf("%#" PRI_klx ", %#" PRI_klx ", %d",
6 		tcp->u_arg[0], tcp->u_arg[1], (int) tcp->u_arg[2]);
7 
8 	return RVAL_DECODED;
9 }
10