]> git.cworth.org Git - notmuch/blob - compat/have_strsep.c
dd4aae753447cee641bfd9d26a45d7b8cb73f2af
[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 }