notmuch/compat/check_asctime.c

13 lines
124 B
C
Raw Normal View History

#include <time.h>
#include <stdio.h>
int
main ()
{
struct tm tm;
(void) asctime_r (&tm, NULL);
return (0);
}