X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=compat%2Fhave_strsep.c;h=dd4aae753447cee641bfd9d26a45d7b8cb73f2af;hb=8099050c7191525c63b03e8b175620d2a2c1a9a3;hp=2abab819b01a483e8f1738995b5aa163f3eca7fb;hpb=1a8916786f9464af6c8a05713a4c987a6b097a12;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); }