aboutsummaryrefslogtreecommitdiff
path: root/src/lib/memutils.h
blob: 07982964c22b27c74e81081fc0c16fe05db1557d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __memutils_h__
#define __memutils_h__

using namespace std;
#include <config.h>

class memutils
{
public:
		static void* mymalloc(const char* wherefrom,__uint32 elcount,__uint32 elsize);
		static void myfree(const char* wherefrom,void* freewhat);
};

#endif