Dmitry V. Levin
42ceb0fd7f
* defs.h: Change comment of the trailing part of #include guard. * flock.h: Likewise. * gcc_compat.h: Likewise. * ipc_defs.h: Likewise. * kernel_types.h: Likewise. * mpers_type.h: Likewise. * msghdr.h: Likewise. * printsiginfo.h: Likewise. * ptrace.h: Likewise. * regs.h: Likewise. * seccomp_fprog.h: Likewise. * sigevent.h: Likewise. * statfs.h: Likewise. * xlat.h: Likewise.
10 lines
171 B
C
10 lines
171 B
C
#ifndef STRACE_SECCOMP_FPROG_H
|
|
#define STRACE_SECCOMP_FPROG_H
|
|
|
|
struct seccomp_fprog {
|
|
unsigned short len;
|
|
unsigned long filter;
|
|
};
|
|
|
|
#endif /* !STRACE_SECCOMP_FPROG_H */
|