summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libugly/asctime.c
blob: e1fcc8706df10f351b07bdb473f5f621fa2f8250 (plain)
1
2
3
4
5
6
7
#include <time.h>

static char buf[25];

char *asctime(const struct tm *timeptr) {
  return asctime_r(timeptr,buf);
}