chiark / gitweb /
[PATCH] added klibc version 0.82 (cvs tree) to the udev tree.
[elogind.git] / klibc / klibc / fprintf.c
1 /*
2  * fprintf.c
3  */
4
5 #include <stdio.h>
6 #include <stdarg.h>
7
8 #define BUFFER_SIZE     16384
9
10 int fprintf(FILE *file, const char *format, ...)
11 {
12   va_list ap;
13   int rv;
14
15   va_start(ap, format);
16   rv = vfprintf(file, format, ap);
17   va_end(ap);
18   return rv;
19 }