+ return (vfprintf_l(stdout, __current_locale(), fmt, ap));
+}
+
+int
+vprintf_l(locale_t loc, const char * __restrict fmt, __va_list ap)
+{
+
+ /* no need to call NORMALIZE_LOCALE(loc) because vfprintf_l will */
+ return (vfprintf_l(stdout, loc, fmt, ap));