summaryrefslogtreecommitdiff
path: root/tools.c
blob: cb4661411c9f56226e1f228d25bac6bf892f7729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "tools.h"

#include <sys/time.h>
#include <time.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdarg.h>

void *operator new(size_t nSize, void *p) throw () {
	return p;
}