summaryrefslogtreecommitdiffstats
path: root/compat/have_strsep.c
blob: dd4aae753447cee641bfd9d26a45d7b8cb73f2af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#define _GNU_SOURCE
#include <string.h>

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

    found = strsep (stringp, delim);
}