Deleted Added
full compact
7a8,12
> * Copyright (c) 2011 The FreeBSD Foundation
> * All rights reserved.
> * Portions of this software were developed by David Chisnall
> * under sponsorship from the FreeBSD Foundation.
> *
37c42
< __FBSDID("$FreeBSD: stable/9/lib/libc/stdio/printf.c 165903 2007-01-09 00:28:16Z imp $");
---
> __FBSDID("$FreeBSD: stable/9/lib/libc/stdio/printf.c 235785 2012-05-22 14:40:39Z theraven $");
40a46
> #include <xlocale.h>
52a59,69
> int
> printf_l(locale_t locale, char const * __restrict fmt, ...)
> {
> int ret;
> va_list ap;
>
> va_start(ap, fmt);
> ret = vfprintf_l(stdout, locale, fmt, ap);
> va_end(ap);
> return (ret);
> }