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

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

    found = strsep(stringp, delim);
}