]> granicus.if.org Git - strace/blob - ioperm.c
Remove traces of riscv64 mpers
[strace] / ioperm.c
1 /*
2  * Copyright (c) 2015-2018 Dmitry V. Levin <ldv@altlinux.org>
3  * All rights reserved.
4  *
5  * SPDX-License-Identifier: LGPL-2.1-or-later
6  */
7
8 #include "defs.h"
9
10 SYS_FUNC(ioperm)
11 {
12         tprintf("%#" PRI_klx ", %#" PRI_klx ", %d",
13                 tcp->u_arg[0], tcp->u_arg[1], (int) tcp->u_arg[2]);
14
15         return RVAL_DECODED;
16 }