2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
5 C99 function vprintf().
7 #include <libraries/stdcio.h>
9 /*****************************************************************************
22 Format a list of arguments and print them on the standard output.
25 format - A printf() format string.
26 args - A list of arguments for the format string.
29 The number of characters written.
41 ******************************************************************************/
43 struct StdCIOBase
*StdCIOBase
= __aros_getbase_StdCIOBase();
45 return vfprintf (StdCIOBase
->_stdout
, format
, args
);