iconv: add euro symbol to GBK as single byte 0x80
[musl.git] / src / time / asctime.c
blob1febe54409e4c601849a6cf28c0f3cf16947737a
1 #include <time.h>
3 char *asctime(const struct tm *tm)
5 static char buf[26];
6 return __asctime_r(tm, buf);