Changeset 1167 for trunk/psLib/src/collections/psBitSet.c
- Timestamp:
- Jun 30, 2004, 2:57:31 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psBitSet.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psBitSet.c
r1166 r1167 10 10 * @author Ross Harman, MHPCC 11 11 * 12 * @version $Revision: 1.1 0$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-07-01 00: 45:41 $12 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-07-01 00:57:31 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 57 57 /* FUNCTION IMPLEMENTATION - LOCAL */ 58 58 /*****************************************************************************/ 59 static void bitSetFree(psBitSet *restrict inBitSet);59 static void psBitSetFree(psBitSet *restrict inBitSet); 60 60 61 61 … … 95 95 psAbort(__func__," : Line %d - Failed to allocate memory", __LINE__); 96 96 } 97 p_psMemSetDeallocator(newObj,(psFreeFcn) bitSetFree);97 p_psMemSetDeallocator(newObj,(psFreeFcn)psBitSetFree); 98 98 newObj->n = numBytes; 99 99 … … 110 110 } 111 111 112 static void bitSetFree(psBitSet *restrict inBitSet)112 static void psBitSetFree(psBitSet *restrict inBitSet) 113 113 { 114 114 if(inBitSet == NULL) {
Note:
See TracChangeset
for help on using the changeset viewer.
