aboutsummaryrefslogtreecommitdiff
path: root/iopl.c
blob: 0f2bb32214d1c235fd3860f28a81f6ecbd0172bf (plain)
1
2
3
4
5
6
7
8
#include "defs.h"

SYS_FUNC(iopl)
{
	tprintf("%d", (int) tcp->u_arg[0]);

	return RVAL_DECODED;
}