arch/m68k-amiga: Define the gcc symbol 'start' instead of using .bss
[AROS.git] / compiler / clib / vprintf.c
blob4a031ef445abf0fbf995da645ad8b549586b91db
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Implementation of vprintf().
6 */
8 /*****************************************************************************
10 NAME */
11 #include <stdio.h>
12 #include <stdarg.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 */