diff options
Diffstat (limited to 'src/H5MMpublic.h')
-rw-r--r-- | src/H5MMpublic.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/H5MMpublic.h b/src/H5MMpublic.h index ee730ec..bfcb807 100644 --- a/src/H5MMpublic.h +++ b/src/H5MMpublic.h @@ -33,8 +33,8 @@ #include "H5public.h" /* These typedefs are currently used for VL datatype allocation/freeing */ -typedef void *(* H5MM_allocate_t)(size_t size,void *info); -typedef void (* H5MM_free_t)(void *mem, void *free_info); +typedef void *(*H5MM_allocate_t)(size_t size, void *alloc_info); +typedef void (*H5MM_free_t)(void *mem, void *free_info); #ifdef __cplusplus extern "C" { @@ -43,4 +43,5 @@ extern "C" { #ifdef __cplusplus } #endif -#endif +#endif /* _H5MMpublic_H */ + |