fixes for new setmalloctag() prototype

This commit is contained in:
cinap_lenrek 2014-02-01 10:29:14 +01:00
parent 8006695405
commit cc24222672
4 changed files with 4 additions and 4 deletions

View file

@ -50,7 +50,7 @@ mysbrk(ulong size)
}
void
setmalloctag(void *v, ulong pc)
setmalloctag(void *v, uintptr pc)
{
USED(v, pc);
}

View file

@ -50,7 +50,7 @@ mysbrk(ulong size)
}
void
setmalloctag(void *v, ulong pc)
setmalloctag(void *v, uintptr pc)
{
USED(v, pc);
}

View file

@ -42,6 +42,6 @@ mallocz(ulong size, int clr)
}
void
setmalloctag(void*, ulong)
setmalloctag(void*, uintptr)
{
}

View file

@ -50,7 +50,7 @@ mysbrk(ulong size)
}
void
setmalloctag(void *v, ulong pc)
setmalloctag(void *v, uintptr pc)
{
USED(v, pc);
}