repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
revert between 56095 -> 55830 in arch
[AROS.git]
/
rom
/
debug
/
kputstr.c
blob
f2c386c15608daf75eec462233da945723a3e2db
1
/*
2
Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3
$Id$
4
5
Desc:
6
*/
7
8
#include <proto/debug.h>
9
#include <proto/exec.h>
10
11
VOID
KPutStr
(
CONST_STRPTR string
)
12
{
13
while
(*
string
)
14
RawPutChar
(*
string
++);
15
}