Trust uboot's device list only if it does not look suspicious.
[AROS.git] / compiler / alib / setrpattrs.c
blob5171048851d02807611689157faf11ace4a661f4
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Varargs version of graphics.library/SetRPAttrsA()
6 Lang: english
7 */
9 #include <graphics/rastport.h>
10 #include <utility/tagitem.h>
12 /*****************************************************************************
14 NAME */
15 #define NO_INLINE_STDARG /* turn off inline def */
16 #include <proto/graphics.h>
18 void SetRPAttrs (
20 /* SYNOPSIS */
21 struct RastPort * rp,
22 Tag tag1,
23 ...)
25 /* FUNCTION
26 This is the varargs version of graphics.library/SetRPAttrsA().
27 For information see graphics.library/SetRPAttrsA().
29 INPUTS
31 RESULT
33 NOTES
35 EXAMPLE
37 BUGS
39 SEE ALSO
40 graphics.library/SetRPAttrsA()
42 INTERNALS
44 HISTORY
46 *****************************************************************************/
48 AROS_NR_SLOWSTACKTAGS_PRE(tag1)
49 SetRPAttrsA (rp, AROS_SLOWSTACKTAGS_ARG(tag1));
50 AROS_NR_SLOWSTACKTAGS_POST
51 } /* SetRPAttrs */