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