aboutsummaryrefslogtreecommitdiff
path: root/compat/have_strsep.c
blob: dd4aae753447cee641bfd9d26a45d7b8cb73f2af (plain)
#define _GNU_SOURCE
#include <string.h>

int
main ()
{
    char *found;
    char **stringp;
    const char *delim;

    found = strsep (stringp, delim);
}