File:  [parser3project] / parser3 / src / targets / cgi / Attic / pa_pool.C
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Thu Mar 22 15:30:47 2001 UTC (25 years, 3 months ago) by paf
Branches: MAIN
CVS tags: HEAD
started isapi

/*
	Parser
	Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com)
	Author: Alexander Petrosyan <paf@design.ru> (http://design.ru/paf)

	$Id: pa_pool.C,v 1.2 2001/03/22 15:30:47 paf Exp $
*/

#include <stdlib.h>

#include "pa_pool.h"

void *Pool::real_malloc(size_t size) {
	return ::malloc(size);
}

void *Pool::real_calloc(size_t size) {
	return ::calloc(size, 1);
}

/// not freeng up anything: no reason, we're dying here.
Pool::~Pool() {
}

E-mail: