OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
xmemory.h
Go to the documentation of this file.
1 
2 /* XMEMORY.H */
3 
4 #ifndef XMEMORY_DEFINED
5 
6 #define XMEMORY_DEFINED
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 
13 
14 #define Xmark()
15 #define Xclear()
16 
17 #define Xmalloc(size) malloc(size)
18 #define Xcalloc(nelem, elsize) calloc(nelem, elsize)
19 #define Xfree(pointer) free(pointer)
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 #endif