/*
**    Name: rmacalloc.c
**
**    Date: Sun Jan  5 16:31:45 2003
**
*/

#include "rmamem.h"
#include <string.h>

char *rmadebugcalloc(int line,char *file,size_t nmemb,size_t size)
    {
    char *ptr;

    ptr = rmadebugmalloc(line,file,nmemb * size);
    if (ptr != NULL)
        {
        memset(ptr,0,nmemb * size);
        }

    return ptr;
    }
