notmuch/compat/have_strsep.c
David Bremner 045f0e455a Import notmuch_0.27.orig.tar.gz
[dgit import orig notmuch_0.27.orig.tar.gz]
2018-06-12 22:39:33 -03:00

11 lines
153 B
C

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