malloc: change malloc and realloc tag types to uintptr

This commit is contained in:
cinap_lenrek 2014-01-20 00:09:53 +01:00
parent 43ae553195
commit b99ecee6cd
3 changed files with 47 additions and 47 deletions

View file

@ -97,10 +97,10 @@ extern ulong msize(void*);
extern void* mallocalign(ulong, ulong, long, ulong);
extern void* calloc(ulong, ulong);
extern void* realloc(void*, ulong);
extern void setmalloctag(void*, ulong);
extern void setrealloctag(void*, ulong);
extern ulong getmalloctag(void*);
extern ulong getrealloctag(void*);
extern void setmalloctag(void*, uintptr);
extern void setrealloctag(void*, uintptr);
extern uintptr getmalloctag(void*);
extern uintptr getrealloctag(void*);
extern void* malloctopoolblock(void*);
/*