1  /* { dg-skip-if "no string.h in eBPF" { bpf-*-* } } */
       2  
       3  #define __USE_STRING_INLINES
       4  #include <string.h>
       5  
       6  void test()
       7  {
       8          char *p, *a;
       9          const char *s;
      10  
      11          while ( (s = a) )
      12            p = strcpy(strcpy(p,"/"), s);
      13  }
      14