/* $OpenBSD: strftime_l.c,v 1.1 2017/09/05 03:16:14 schwarze Exp $ */ /* * Written in 2017 by Ingo Schwarze . * Released into the public domain. */ #include size_t strftime_l(char *s, size_t maxsize, const char *format, const struct tm *t, locale_t locale __attribute__((__unused__))) { return strftime(s, maxsize, format, t); }