• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef STRACE_SECCOMP_FPROG_H
2 #define STRACE_SECCOMP_FPROG_H
3 
4 struct seccomp_fprog {
5 	unsigned short len;
6 	unsigned long filter;
7 };
8 
9 #endif /* !STRACE_SECCOMP_FPROG_H */
10