2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 Implementation of vprintf().
8 /*****************************************************************************
21 Format a list of arguments and print them on the standard output.
24 format - A printf() format string.
25 args - A list of arguments for the format string.
28 The number of characters written.
40 ******************************************************************************/
42 return vfprintf (stdout
, format
, args
);