]> 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 main()
5 {
6     struct tm tm;
7
8     (void) asctime_r (&tm, NULL);
9
10     return (0);
11 }