Annotation of parser3/src/targets/cgi/pa_pool.C, revision 1.4

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

E-mail: