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
- HD_SCSICMD: assume there is no sense-data buffer if no AUTOSENSE
[AROS.git]
/
rom
/
debug
/
kputstr.c
blob
8cc009f301aa31ec5a4d52d86028a8410eb9e457
1
#include <proto/debug.h>
2
#include <proto/exec.h>
3
4
VOID
KPutStr
(
CONST_STRPTR string
)
5
{
6
while
(*
string
)
7
RawPutChar
(*
string
++);
8
}