File:  [parser3project] / parser3 / src / main / pa_pool.C
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Fri Jan 26 14:47:52 2001 UTC (25 years, 5 months ago) by paf
creating parser3 module

#include <stdlib.h>

#include "pa_pool.h"

Pool::Pool() {
}

Pool::~Pool() {
}

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

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

E-mail: