* Assembler part of libc now also exports "name@params_size" for every system function

because of stdcall convention. 
* Some fixes in calculating relocations procedure.

git-svn-id: svn://kolibrios.org@159 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Andrey Halyavin (halyavin)
2006-09-23 14:00:36 +00:00
parent 6127c7381d
commit 4d719e6bc5
28 changed files with 92 additions and 127 deletions

View File

@@ -82,7 +82,7 @@ extern void stdcall _msys_sound_speaker_play(void* data);
extern void stdcall _msys_write_text(int x,int y,int color,char* text,int len);
extern void* stdcall _msys_start_thread(void (* func_ptr)(void),int stack_size,int* pid);
extern void stdcall _msys_window_redraw(int status);
extern void* stdcall malloc(int);
extern void stdcall free(void*);
extern void* stdcall realloc(void*,int);
extern void* malloc(int);
extern void free(void*);
extern void* realloc(void*,int);
#endif