Annotation of parser3/src/targets/parser/pa_pool.C, revision 1.2

1.1       paf         1: /*
1.2     ! paf         2:        Parser
        !             3:        Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com)
        !             4:        Author: Alexander Petrosyan <paf@design.ru>
        !             5: 
        !             6:        $Id: pa_string.C,v 1.35 2001/03/10 12:12:51 paf Exp $
1.1       paf         7: */
                      8: 
                      9: #include <stdlib.h>
                     10: 
                     11: #include "pa_pool.h"
                     12: 
                     13: void *Pool::real_malloc(size_t size) {
                     14:        return ::malloc(size);
                     15: }
                     16: 
                     17: void *Pool::real_calloc(size_t size) {
                     18:        return ::calloc(size, 1);
                     19: }

E-mail: