]> git.cameronkatri.com Git - mandoc.git/blobdiff - test-strptime.c
clarify the difference between .Cm and .Ic;
[mandoc.git] / test-strptime.c
index bedc7758d12f486aab69df056132aa287074257f..a34cbd77d0170bfab5f6dac38f022d8aa17e06a9 100644 (file)
@@ -1,7 +1,3 @@
-#if defined(__linux__) || defined(__MINT__)
-# define _GNU_SOURCE /* strptime() */
-#endif
-
 #include <time.h>
 
 int
@@ -9,6 +5,6 @@ main(void)
 {
        struct tm tm;
        const char input[] = "2014-01-04";
-       return( ! (input+10 == strptime(input, "%Y-%m-%d", &tm) &&
-           114 == tm.tm_year && 0 == tm.tm_mon && 4 == tm.tm_mday));
+       return ! (strptime(input, "%Y-%m-%d", &tm) == input + 10 &&
+           tm.tm_year == 114 && tm.tm_mon == 0 && tm.tm_mday == 4);
 }