notmuch/compat/check_asctime.c
David Bremner 045f0e455a Import notmuch_0.27.orig.tar.gz
[dgit import orig notmuch_0.27.orig.tar.gz]
2018-06-12 22:39:33 -03:00

11 lines
123 B
C

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