]> granicus.if.org Git - strace/blob - iopl.c
Use <asm/unistd.h> instead of <sys/syscall.h>
[strace] / iopl.c
1 #include "defs.h"
2
3 SYS_FUNC(iopl)
4 {
5         tprintf("%d", (int) tcp->u_arg[0]);
6
7         return RVAL_DECODED;
8 }