notmuch/compat/have_strsep.c
David Bremner 126347b694 Import notmuch_0.38.2.orig.tar.xz
[dgit import orig notmuch_0.38.2.orig.tar.xz]
2023-12-01 07:51:09 -04:00

12 lines
155 B
C

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