aboutsummaryrefslogtreecommitdiff
path: root/compat/check_asctime.c
blob: b0e56f0c1a2b10e1bb46564d91967cb829101bc8 (plain)
#include <time.h>
#include <stdio.h>

int main()
{
    struct tm tm;

    (void) asctime_r (&tm, NULL);

    return (0);
}