X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=compat%2Fhave_strcasestr.c;fp=compat%2Fhave_strcasestr.c;h=3cd1838d950bd30c6239053a09d2a8f401f8b537;hp=c0fb7629d8e410f3a372c5c365c722e2a17a4ee1;hb=8099050c7191525c63b03e8b175620d2a2c1a9a3;hpb=1a8916786f9464af6c8a05713a4c987a6b097a12 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); }