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
16 lines
326 B
C
16 lines
326 B
C
/*
|
|
* Copyright (c) 2018 Dmitry V. Levin <ldv@altlinux.org>
|
|
* All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
/* Architecture-specific definitions. */
|
|
#ifndef STRACE_ARCH_DEFS_H
|
|
# define STRACE_ARCH_DEFS_H
|
|
|
|
# include "arch_defs_.h"
|
|
# include "linux/arch_defs_.h"
|
|
|
|
#endif /* !STRACE_ARCH_DEFS_H */
|