aboutsummaryrefslogtreecommitdiffhomepage
path: root/compat/check_asctime.c
blob: b0e56f0c1a2b10e1bb46564d91967cb829101bc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <time.h>
#include <stdio.h>

int main()
{
    struct tm tm;

    (void) asctime_r (&tm, NULL);

    return (0);
}