1 /* -------------------------------------------------------------------------- */
2 /* Copyright (c) 2005-2012 by Timothy A. Davis, http://www.suitesparse.com.   */
3 /* All Rights Reserved.  See ../Doc/License.txt for License.                  */
4 /* -------------------------------------------------------------------------- */
5 
6 #ifndef _UMF_MALLOC
7 #define _UMF_MALLOC
8 
9 #if defined (UMF_MALLOC_COUNT) || !defined (NDEBUG)
10 
11 #ifndef EXTERN
12 #define EXTERN extern
13 #endif
14 
15 GLOBAL EXTERN Int UMF_malloc_count ;
16 #endif
17 
18 GLOBAL void *UMF_malloc
19 (
20     Int n_objects,
21     size_t size_of_object
22 ) ;
23 
24 #endif
25