strace/seccomp_fprog.h

10 lines
171 B
C
Raw Normal View History

#ifndef STRACE_SECCOMP_FPROG_H
#define STRACE_SECCOMP_FPROG_H
struct seccomp_fprog {
unsigned short len;
unsigned long filter;
};
#endif /* !STRACE_SECCOMP_FPROG_H */