summaryrefslogtreecommitdiff
path: root/lib/libc/time/strftime_l.c
blob: 4d3face1c95fc785103be294272dda00570688e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*	$OpenBSD: strftime_l.c,v 1.1 2017/09/05 03:16:14 schwarze Exp $ */
/*
 * Written in 2017 by Ingo Schwarze <schwarze@openbsd.org>.
 * Released into the public domain.
 */

#include <time.h>

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);
}