Parcourir la source

add wcsftime_t alias

this is a nonstandard extension.
Rich Felker il y a 11 ans
Parent
commit
0c7294ef30
1 fichiers modifiés avec 3 ajouts et 0 suppressions
  1. 3 0
      src/time/wcsftime.c

+ 3 - 0
src/time/wcsftime.c

@@ -2,6 +2,7 @@
 #include <time.h>
 #include <string.h>
 #include <locale.h>
+#include "libc.h"
 
 size_t __strftime_l(char *restrict, size_t, const char *restrict, const struct tm *restrict, locale_t);
 
@@ -36,3 +37,5 @@ size_t wcsftime(wchar_t *restrict wcs, size_t n, const wchar_t *restrict f, cons
 {
 	return __wcsftime_l(wcs, n, f, tm, 0);
 }
+
+weak_alias(__wcsftime_l, wcsftime_l);