aosp12/external/strace/iopl.c

9 lines
98 B
C
Raw Normal View History

2023-01-09 17:11:35 +08:00
#include "defs.h"
SYS_FUNC(iopl)
{
tprintf("%d", (int) tcp->u_arg[0]);
return RVAL_DECODED;
}