]> git.cameronkatri.com Git - mandoc.git/blobdiff - test-strcasestr.c
tiny update
[mandoc.git] / test-strcasestr.c
index 479ba9138f856f6f8a65446740211abc4db4c440..0b1a576bda366a997bca767c1485407f087583e7 100644 (file)
@@ -1,7 +1,3 @@
-#if defined(__linux__) || defined(__MINT__)
-# define _GNU_SOURCE /* strcasestr() */
-#endif
-
 #include <string.h>
 
 int
@@ -9,5 +5,5 @@ main(void)
 {
        const char *big = "BigString";
        char *cp = strcasestr(big, "Gst");
-       return(big + 2 != cp);
+       return cp != big + 2;
 }