HDF5 Extras  0.0.1
Convenience Functions for using HDF5 Better
gmalloc.h
Go to the documentation of this file.
1 /* gmalloc.h
2 
3  July 27, 2014: Just stubs to standard C functions.
4 
5 */
6 #ifndef GMALLOC_H_
7 #define GMALLOC_H_
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
15 void *GMalloc( unsigned long size );
16 void GFree( void *block );
17 void *GRealloc( void *block, unsigned long size );
18 
19 #ifdef __cplusplus
20 }
21 #endif
22 
23 #endif