summaryrefslogtreecommitdiff
path: root/src/locale
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013-07-24 17:58:31 -0400
committerRich Felker <dalias@aerifal.cx>2013-07-24 17:58:31 -0400
commit0a37d99547b2a82880cdf8dd849f98ed39d179e1 (patch)
treefb53da02be7fb6deda5288e0220ef4db428225e8 /src/locale
parentf5dfb45f78872b2574b911af2e0a372c1dac1590 (diff)
downloadmusl-0a37d99547b2a82880cdf8dd849f98ed39d179e1.tar.gz
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.
Diffstat (limited to 'src/locale')
-rw-r--r--src/locale/strftime_l.c7
1 files changed, 0 insertions, 7 deletions
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 <locale.h>
-#include <time.h>
-
-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);
-}