Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7566 → Rev 7567

/programs/cmm/lisp/stdcall.h
1,5 → 1,11
 
/* Lisp functions */
:dword std_exit()
{
con_exit stdcall (1);
ExitProcess();
}
 
:dword std_set(dword count, args)
{
dword name = 0;
103,7 → 109,7
functions.set("str", #std_str);
/* System functions */
functions.set("exit", #ExitProcess);
functions.set("exit", #std_exit);
/* Math functions */
functions.set("+", #std_add);