revert between 56095 -> 55830 in arch
[AROS.git] / rom / debug / kputstr.c
blobf2c386c15608daf75eec462233da945723a3e2db
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 */
8 #include <proto/debug.h>
9 #include <proto/exec.h>
11 VOID KPutStr(CONST_STRPTR string)
13 while (*string)
14 RawPutChar(*string++);