notmuch/compat/check_asctime.c

12 lines
123 B
C
Raw Normal View History

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