2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
8 #include <libraries/posixc.h>
12 /*****************************************************************************
24 Format a list of arguments and print them on the standard output.
27 format - A printf() format string.
28 args - A list of arguments for the format string.
31 The number of characters written.
43 ******************************************************************************/
45 struct PosixCBase
*PosixCBase
= __aros_getbase_PosixCBase();
47 return vfprintf (PosixCBase
->_stdout
, format
, args
);