summaryrefslogtreecommitdiff
path: root/compat/have_strcasestr.c
blob: 3cd1838d950bd30c6239053a09d2a8f401f8b537 (plain)
#define _GNU_SOURCE
#include <strings.h>

int
main ()
{
    char *found;
    const char *haystack, *needle;

    found = strcasestr (haystack, needle);
}