diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2018-12-30 15:35:21 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2018-12-30 15:35:21 +0000 |
commit | d6c71dd0611e7e337edaf36c35ad51a90f404b14 (patch) | |
tree | f07993776311a1494d7dc339cf94d5a4c8dc5b82 /printsiginfo.h | |
parent | 51bd6db1ef017e44e878c62d4ea264f65106cb66 (diff) | |
download | strace-d6c71dd0611e7e337edaf36c35ad51a90f404b14.tar.gz |
Fix preprocessor indentation
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
Diffstat (limited to 'printsiginfo.h')
-rw-r--r-- | printsiginfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/printsiginfo.h b/printsiginfo.h index 7c726790f..4088cb540 100644 --- a/printsiginfo.h +++ b/printsiginfo.h @@ -6,7 +6,7 @@ */ #ifndef STRACE_PRINTSIGINFO_H -#define STRACE_PRINTSIGINFO_H +# define STRACE_PRINTSIGINFO_H extern void printsiginfo(const siginfo_t *); |