fix to build with pedantic flags
[AROS.git] / compiler / arossupport / rawputchars.c
blobc97e81ba4865d5db2fb4183a41736595ef75a818
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Formats a message and makes sure the user will see it.
6 Lang: english
7 */
9 #include <aros/config.h>
10 #include <proto/exec.h>
12 /*****************************************************************************
14 NAME */
15 #include <proto/arossupport.h>
17 void RawPutChars (
19 /* SYNOPSIS */
20 const UBYTE * str,
21 int len)
23 /* FUNCTION
24 Emits len bytes of fmt via RawPutChar()
26 INPUTS
27 str - string to print
28 len - how many bytes of str to print
30 RESULT
31 None.
33 NOTES
35 EXAMPLE
37 BUGS
39 SEE ALSO
41 INTERNALS
43 HISTORY
45 ******************************************************************************/
47 while (*str && len --)
48 RawPutChar (*str ++);
49 } /* RawPutChars */