]> git.notmuchmail.org Git - notmuch/blob - compat/check_asctime.c
Merge branch 'release'
[notmuch] / compat / check_asctime.c
1 #include <time.h>
2 #include <stdio.h>
3
4 int
5 main ()
6 {
7     struct tm tm;
8
9     (void) asctime_r (&tm, NULL);
10
11     return (0);
12 }