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