Trust uboot's device list only if it does not look suspicious.
[AROS.git] / compiler / alib / printf.c
blobf4ecbf3e692bdd9a0ad4947a6201706e56a4f984
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Varargs stub for Printf()
6 Lang: english
7 */
9 #include <dos/dos.h>
10 #include <proto/dos.h>
12 LONG Printf(STRPTR fmt, ...) __stackparm;
14 LONG Printf(STRPTR fmt, ...)
16 LONG retval;
18 retval = VFPrintf(Output(), fmt, &fmt+1);
20 return retval;