]> git.notmuchmail.org Git - notmuch/blob - compat/have_strsep.c
smime: tests of X.509 certificate validity are known-broken on GMime < 3.2.7
[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 }