netinet/in.h: add IPPROTO_MH
[uclibc-ng.git] / libc / stdio / fprintf.c
blobfb7549566dfab5d58199ce006fd431a0bdcf5a89
1 /* Copyright (C) 2004 Manuel Novoa III <mjn3@codepoet.org>
3 * GNU Library General Public License (LGPL) version 2 or later.
5 * Dedicated to Toni. See uClibc/DEDICATION.mjn3 for details.
6 */
8 #include "_stdio.h"
9 #include <stdarg.h>
12 int fprintf(FILE * __restrict stream, const char * __restrict format, ...)
14 va_list arg;
15 int rv;
17 va_start(arg, format);
18 rv = vfprintf(stream, format, arg);
19 va_end(arg);
21 return rv;
23 libc_hidden_def(fprintf)