Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7159 → Rev 7160

/programs/cmm/lib/mem.h
5,7 → 5,7
#include "../lib/kolibri.h"
#endif
 
dword mem_init()
:dword mem_init()
{
$push ebx
$mov eax, 68
16,7 → 16,7
return EAX;
}
 
dword malloc(dword size)
:dword malloc(dword size)
{
$push ebx
$push ecx
31,7 → 31,7
return EAX;
}
 
stdcall dword realloc(dword mptr, size)
:stdcall dword realloc(dword mptr, size)
{
$push ebx
$push ecx
49,7 → 49,7
return EAX;
}
 
dword free(dword mptr)
:dword free(dword mptr)
{
$push eax
$push ebx