- Made pciuhci.device and pciehci.device compile again: completed
[AROS.git] / compiler / clib / vprintf.c
blobd40e7cdcca0247fd75b76fd198bc05957c6ce45f
1 /*
2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
3 $Id$
5 C99 function vprintf()
6 */
7 #include <stdarg.h>
9 /*****************************************************************************
11 NAME */
12 #include <stdio.h>
14 int vprintf (
16 /* SYNOPSIS */
17 const char * format,
18 va_list args)
20 /* FUNCTION
21 Format a list of arguments and print them on the standard output.
23 INPUTS
24 format - A printf() format string.
25 args - A list of arguments for the format string.
27 RESULT
28 The number of characters written.
30 NOTES
32 EXAMPLE
34 BUGS
36 SEE ALSO
38 INTERNALS
40 ******************************************************************************/
42 return vfprintf (stdout, format, args);
43 } /* vprintf */