HardenedBSD/test-strptime.c
Ulrich Spörlein 211d2d512b Vendor import of mdocml 1.12.1
It is a suite of ISC licensed tools to compile and render mdoc/man pages and
will replace groff for formatting manpages in the base system.

http://mdocml.bsd.lv/
2012-10-18 09:55:16 +00:00

14 lines
213 B
C

#if defined(__linux__) || defined(__MINT__)
# define _GNU_SOURCE /* strptime(), getsubopt() */
#endif
#include <time.h>
int
main(int argc, char **argv)
{
struct tm tm;
strptime(*argv, "%D", &tm);
return 0;
}