Dmitry V. Levin
d6c71dd061
Indent the C preprocessor directives to reflect their nesting using the following script: $ cppi -l $(git grep -El '^[[:space:]]*#[[:space:]]*(if|ifdef|ifndef|elif|else|endif|define|pragma)[[:space:]]' |grep -v '\.sh$') |while read f; do cppi < "$f" > "$f".cppi; mv "$f".cppi "$f" done
17 lines
457 B
C
17 lines
457 B
C
/*
|
|
* Copyright (c) 2018 Dmitry V. Levin <ldv@altlinux.org>
|
|
* All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
#ifndef STRACE_PTRACE_SYSCALL_INFO_H
|
|
# define STRACE_PTRACE_SYSCALL_INFO_H
|
|
|
|
extern bool ptrace_get_syscall_info_supported;
|
|
extern bool test_ptrace_get_syscall_info(void);
|
|
extern void print_ptrace_syscall_info(struct tcb *, kernel_ulong_t addr,
|
|
kernel_ulong_t len);
|
|
|
|
#endif /* !STRACE_PTRACE_SYSCALL_INFO_H */
|