]> git.cworth.org Git - obsolete/notmuch-old/blob - compat/check_asctime.c
asctime: check for standards compliance (Solaris support)
[obsolete/notmuch-old] / 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 }