forked from KolibriOS/kolibrios
Graph (branch: tcc_current): now you can provide a filename, when calling a program from shell, which should be opened on start.
tcc: ksys.h: added "const" to string argument of _ksys_debug_puts(...). git-svn-id: svn://kolibrios.org@9764 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
@@ -1067,7 +1067,7 @@ void _ksys_debug_putc(char c){
|
||||
}
|
||||
|
||||
static inline
|
||||
void _ksys_debug_puts(char *s){
|
||||
void _ksys_debug_puts(const char* s){
|
||||
unsigned i=0;
|
||||
while (*(s+i)){
|
||||
asm_inline ("int $0x40"::"a"(63), "b"(1), "c"(*(s+i)));
|
||||
|
Reference in New Issue
Block a user