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
344 B
C
16 lines
344 B
C
/*
|
|
* Copyright (c) 2018 Dmitry V. Levin <ldv@altlinux.org>
|
|
* All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
/* retval to index and visa versa. */
|
|
#ifndef STRACE_RETVAL_H
|
|
# define STRACE_RETVAL_H
|
|
|
|
uint16_t retval_new(kernel_long_t rval);
|
|
kernel_long_t retval_get(uint16_t rval_idx);
|
|
|
|
#endif /* !STRACE_RETVAL_H */
|