move strftime_l into strftime.c and add __-prefixed version
[musl] / src / locale / strftime_l.c
diff --git a/src/locale/strftime_l.c b/src/locale/strftime_l.c
deleted file mode 100644 (file)
index f19f5bf..0000000
+++ /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);
-}