File:  [parser3project] / parser3 / src / targets / cgi / Attic / pa_pool.C
Revision 1.4: download - view: text, annotated - select for diffs - revision graph
Thu Apr 26 15:09:13 2001 UTC (25 years, 2 months ago) by paf
Branches: MAIN
CVS tags: HEAD
code documentation ++

/** @file
	Parser: CGI memory manager impl.

	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.4 2001/04/26 15:09:13 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);
}

E-mail: