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

int
main ()
{
    struct tm tm;

    (void) asctime_r (&tm, NULL);

    return (0);
}