1 /*
2 * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
3 * Copyright (c) 1993, 1994, 1995 Rick Sladkey <jrs@world.std.com>
4 * Copyright (c) 1995-2021 The strace developers.
5 * All rights reserved.
6 *
7 * SPDX-License-Identifier: LGPL-2.1-or-later
8 */
9
10 #ifndef STRACE_SYSCALL_H
11 # define STRACE_SYSCALL_H
12
13 # include "syscall_dummy.h"
14 # include "sys_func.h"
15
16 # if HAVE_ARCH_UID16_SYSCALLS
17 extern SYS_FUNC(chown16);
18 extern SYS_FUNC(fchown16);
19 extern SYS_FUNC(getgroups16);
20 extern SYS_FUNC(getresuid16);
21 extern SYS_FUNC(getuid16);
22 extern SYS_FUNC(setfsuid16);
23 extern SYS_FUNC(setgroups16);
24 extern SYS_FUNC(setresuid16);
25 extern SYS_FUNC(setreuid16);
26 extern SYS_FUNC(setuid16);
27 # endif /* HAVE_ARCH_UID16_SYSCALLS */
28
29 #endif /* !STRACE_SYSCALL_H */