Correct math and limerick.
[dragonfly.git] / contrib / mdocml / test-strptime.c
blob976e9c8066a33086824b071c2de20728b047a1af
1 #if defined(__linux__) || defined(__MINT__)
2 # define _GNU_SOURCE /* strptime(), getsubopt() */
3 #endif
5 #include <time.h>
7 int
8 main(int argc, char **argv)
10 struct tm tm;
11 strptime(*argv, "%D", &tm);
12 return 0;