Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7566 → Rev 7565

/programs/cmm/lisp/stdcall.h
65,11 → 65,9
:dword std_print(dword count, args)
{
dword ret = 0;
consoleInit();
WHILE(count)
{
IF(!DSDWORD[args]) con_printf stdcall ("nil");
ELSE con_printf stdcall (DSDWORD[args]);
con_printf stdcall (DSDWORD[args]);
args+=4;
count--;
}
79,7 → 77,6
:dword std_input(dword count, args)
{
dword buf = 0;
consoleInit();
buf = malloc(100);
WHILE(count)
{