X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=compat%2Fhave_strcasestr.c;h=3cd1838d950bd30c6239053a09d2a8f401f8b537;hb=8099050c7191525c63b03e8b175620d2a2c1a9a3;hp=c0fb7629d8e410f3a372c5c365c722e2a17a4ee1;hpb=f7130468d27c4f37d45e6aa60baacfc3329ccff4;p=notmuch diff --git a/compat/have_strcasestr.c b/compat/have_strcasestr.c index c0fb7629..3cd1838d 100644 --- a/compat/have_strcasestr.c +++ b/compat/have_strcasestr.c @@ -1,10 +1,11 @@ #define _GNU_SOURCE #include -int main() +int +main () { char *found; const char *haystack, *needle; - found = strcasestr(haystack, needle); + found = strcasestr (haystack, needle); }