]> git.notmuchmail.org Git - notmuch/blob - compat/have_strsep.c
Merge branch 'release'
[notmuch] / compat / have_strsep.c
1 #define _GNU_SOURCE
2 #include <string.h>
3
4 int
5 main ()
6 {
7     char *found;
8     char **stringp;
9     const char *delim;
10
11     found = strsep (stringp, delim);
12 }