libc testsuite + fixes

git-svn-id: svn://kolibrios.org@6433 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
siemargl
2016-05-19 12:15:22 +00:00
parent cd8030cee3
commit ace23ebbe2
86 changed files with 3327 additions and 197 deletions

View File

@@ -8,31 +8,31 @@ public realloc
align 4
malloc:
push ebx
mov eax,68
mov ebx,12
mov ecx,[esp+4] ;size
mov ecx,[esp+8] ;size
int 0x40
pop ebx
ret 4
align 4
free:
push ebx
mov eax,68
mov ebx,13
mov ecx,[esp+4]
mov ecx,[esp+8]
int 0x40
pop ebx
ret 4
align 4
realloc:
push ebx
mov ebx,20
mov eax,68
mov edx,[esp+4] ; pointer
mov ecx,[esp+8] ; size
mov edx,[esp+8] ; pointer
mov ecx,[esp+12] ; size
int 0x40
pop ebx
ret 8