notmuch/compat/have_strsep.c

13 lines
155 B
C
Raw Normal View History

#define _GNU_SOURCE
#include <string.h>
int
main ()
{
char *found;
char **stringp;
const char *delim;
found = strsep (stringp, delim);
}