IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 30, 2004, 2:57:31 PM (22 years ago)
Author:
harman
Message:

Renamed bitSetFree to psBitSetFree for consistency

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/psBitSet.c

    r1166 r1167  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.10 $ $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 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    5757/*  FUNCTION IMPLEMENTATION - LOCAL                                          */
    5858/*****************************************************************************/
    59 static void bitSetFree(psBitSet *restrict inBitSet);
     59static void psBitSetFree(psBitSet *restrict inBitSet);
    6060
    6161
     
    9595        psAbort(__func__," : Line %d - Failed to allocate memory", __LINE__);
    9696    }
    97     p_psMemSetDeallocator(newObj,(psFreeFcn)bitSetFree);
     97    p_psMemSetDeallocator(newObj,(psFreeFcn)psBitSetFree);
    9898    newObj->n = numBytes;
    9999
     
    110110}
    111111
    112 static void bitSetFree(psBitSet *restrict inBitSet)
     112static void psBitSetFree(psBitSet *restrict inBitSet)
    113113{
    114114    if(inBitSet == NULL) {
Note: See TracChangeset for help on using the changeset viewer.