test: Use small Python script for JSON normalization instead of json.tool
[notmuch.git] / 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 }