mirror of
https://github.com/MacPaw/universal-detector.git
synced 2025-08-29 11:03:48 +02:00
21 lines
393 B
C
21 lines
393 B
C
#include "prmem.h" // nose core nose core nose core nose core
|
|
|
|
PR_IMPLEMENT(void *) PR_Malloc(PRUint32 size)
|
|
{
|
|
return malloc(size);
|
|
}
|
|
|
|
PR_IMPLEMENT(void *) PR_Calloc(PRUint32 nelem, PRUint32 elsize)
|
|
{
|
|
return calloc(nelem, elsize);
|
|
}
|
|
|
|
PR_IMPLEMENT(void *) PR_Realloc(void *ptr, PRUint32 size)
|
|
{
|
|
return realloc(ptr, size);
|
|
}
|
|
|
|
PR_IMPLEMENT(void) PR_Free(void *ptr)
|
|
{
|
|
free(ptr);
|
|
}
|