|
|
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);
}