1 /* { dg-do compile } */
2 /* { dg-options "-std=gnu99" } */
3 
4 #include <stdint.h>
5 #include <bpf-helpers.h>
6 
7 void
foo()8 foo ()
9 {
10   int ret;
11   void *skb, *map;
12   uint32_t index;
13 
14   ret = bpf_skb_under_cgroup (skb, map, index);
15 }
16 
17 /* { dg-final { scan-assembler "call\t33" } } */
18