You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
754 B
47 lines
754 B
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
// $NoKeywords: $ |
|
// |
|
//=============================================================================// |
|
// mem.c |
|
#include <stdlib.h> |
|
#include <memory.h> |
|
#include <string.h> |
|
#include "mem.h" |
|
|
|
|
|
void *Mem_Malloc( size_t size ) |
|
{ |
|
return malloc( size ); |
|
} |
|
|
|
void *Mem_ZeroMalloc( size_t size ) |
|
{ |
|
void *p; |
|
|
|
p = malloc( size ); |
|
memset( (unsigned char *)p, 0, size ); |
|
return p; |
|
} |
|
|
|
void *Mem_Realloc( void *memblock, size_t size ) |
|
{ |
|
return realloc( memblock, size ); |
|
} |
|
|
|
void *Mem_Calloc( int num, size_t size ) |
|
{ |
|
return calloc( num, size ); |
|
} |
|
|
|
char *Mem_Strdup( const char *strSource ) |
|
{ |
|
return strdup( strSource ); |
|
} |
|
|
|
void Mem_Free( void *p ) |
|
{ |
|
free( p ); |
|
}
|
|
|