18907920bb
This commit is an attempt to unify usage of include guards (in top-level headers, at least). As a side note, different files with *.h extension have different semantics: for example, printargs.h is included multiple times in order to generate slightly varying code depending on values of macro definitions - maybe it's better to change extension of such files to something like *.inc. * defs.h: Add #include guard. * flock.h: Likewise. * ipc_defs.h: Likewise. * mpers_type.h: Likewise. * printsiginfo.h: Likewise. * ptrace.h: Likewise. * regs.h: Likewise. * seccomp_fprog.h: Likewise. * gcc_compat.h: Rename the macro used for #include guard. * msghdr.h: Likewise. * sigevent.h: Likewise. * kernel_types.h: Comment the trailing part of #include guard. * xlat.h: Add missing macro definition for #include guard.
7 lines
143 B
C
7 lines
143 B
C
#ifndef STRACE_PRINTSIGINFO_H
|
|
#define STRACE_PRINTSIGINFO_H
|
|
|
|
extern void printsiginfo(const siginfo_t *);
|
|
|
|
#endif /* !STRACE_PRINTSIGINFO_H */
|