From 0a37d99547b2a82880cdf8dd849f98ed39d179e1 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 24 Jul 2013 17:58:31 -0400 Subject: move strftime_l into strftime.c and add __-prefixed version the latter is both for ABI purposes, and to facilitate eventually adding LC_TIME support. it's also nice to eliminate an extra source file. --- src/locale/strftime_l.c | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 src/locale/strftime_l.c (limited to 'src/locale/strftime_l.c') diff --git a/src/locale/strftime_l.c b/src/locale/strftime_l.c deleted file mode 100644 index f19f5bf3..00000000 --- a/src/locale/strftime_l.c +++ /dev/null @@ -1,7 +0,0 @@ -#include -#include - -size_t strftime_l(char *restrict s, size_t n, const char *restrict f, const struct tm *restrict tm, locale_t l) -{ - return strftime(s, n, f, tm); -} -- cgit v1.2.1