X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=compat%2Fhave_strsep.c;h=dd4aae753447cee641bfd9d26a45d7b8cb73f2af;hb=690e36bacd5e53c45775586024ca70f069ca68ad;hp=2abab819b01a483e8f1738995b5aa163f3eca7fb;hpb=f7130468d27c4f37d45e6aa60baacfc3329ccff4;p=notmuch diff --git a/compat/have_strsep.c b/compat/have_strsep.c index 2abab819..dd4aae75 100644 --- a/compat/have_strsep.c +++ b/compat/have_strsep.c @@ -1,11 +1,12 @@ #define _GNU_SOURCE #include -int main() +int +main () { char *found; char **stringp; const char *delim; - found = strsep(stringp, delim); + found = strsep (stringp, delim); }