blob: befff06579e4d71a9c0f5b3b62789487374a9395 [file] [log] [blame]
/* { dg-skip-if "no string.h in eBPF" { bpf-*-* } } */
#define __USE_STRING_INLINES
#include <string.h>
void test()
{
char *p, *a;
const char *s;
while ( (s = a) )
p = strcpy(strcpy(p,"/"), s);
}