cvmalloc.h
// $Id$
/* Header file for the cvmalloc package. Gives prototypes for
* user-callable functions in the package, malloc_check() and
* getOutstandingMallocs(). These functions do not need to be called
* from an application to get a summary of malloc and free usage when
* a process exits (just link to cvmalloc.o), so this header file is
* not needed to use the package. It is needed only if either of
* these two functions is to be called directly from the application.
*
* $Log$
*/
#ifndef __CVMALLOC_H__
#define __CVMALLOC_H__
void malloc_check( void );
int getOutstandingMallocs( void );
#endif