Changeset 5768
- Timestamp:
- 09/13/10 11:37:47 (15 years ago)
- Location:
- issm/trunk/src/c/shared/Alloc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/shared/Alloc/alloc.cpp
r3775 r5768 96 96 return value; 97 97 } 98 99 void xdelete( void* *pv) {100 101 if (pv && *pv) {102 103 delete *pv;104 105 *pv=NULL;106 }107 } -
issm/trunk/src/c/shared/Alloc/alloc.h
r3280 r5768 10 10 void xfree(void** pvptr); 11 11 void* xrealloc ( void* pv, int size); 12 void xdelete( void* *pv) ;13 12 14 13 #endif
Note:
See TracChangeset
for help on using the changeset viewer.