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 */
|