add option for classic magicmenu "mixed" menu style (pull donw on screen title, pop...
[AROS.git] / rom / debug / kputstr.c
blobd24d1a6ad5e053fa07c77582d978d54fd29c54e1
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++);