xref: /netbsd-src/external/bsd/mdocml/dist/test-strptime.c (revision 96fc3e30a7c3f7bba53384bf41dad5f78306fac4)
1 #if defined(__linux__) || defined(__MINT__)
2 # define _GNU_SOURCE /* strptime(), getsubopt() */
3 #endif
4 
5 #include <time.h>
6 
7 int
8 main(int argc, char **argv)
9 {
10 	struct tm tm;
11 	strptime(*argv, "%D", &tm);
12 	return 0;
13 }
14