Ignore:
Timestamp:
May 22, 2001, 7:18:41 PM (24 years ago)
Author:
umoeller
Message:

misc updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/linklist.c

    r53 r71  
    235235}
    236236
    237 #ifdef __XWPMEMDEBUG__
     237#ifdef __DEBUG_MALLOC_ENABLED__
    238238
    239239/*
     
    263263}
    264264
    265 #else
     265#endif      // __DEBUG_MALLOC_ENABLED__
    266266
    267267/*
     
    286286 */
    287287
    288 PLINKLIST lstCreate(BOOL fItemsFreeable)    // in: invoke free() on the data
     288PLINKLIST (lstCreate)(BOOL fItemsFreeable)    // in: invoke free() on the data
    289289                                            // item pointers upon destruction?
    290290{
     
    294294    return (pNewList);
    295295}
    296 
    297 #endif      // __XWPMEMDEBUG__
    298296
    299297/*
     
    543541}
    544542
    545 #ifdef __XWPMEMDEBUG__
     543#ifdef __DEBUG_MALLOC_ENABLED__
    546544
    547545/*
     
    603601}
    604602
    605 #else
     603#endif // __DEBUG_MALLOC_ENABLED__
    606604
    607605/*
     
    615613 */
    616614
    617 PLISTNODE lstAppendItem(PLINKLIST pList,
     615PLISTNODE (lstAppendItem)(PLINKLIST pList,
    618616                        void* pNewItemData)     // in: data to store in list node
    619617{
     
    656654    return (pNewNode);
    657655}
    658 
    659 #endif // __XWPMEMDEBUG__
    660656
    661657/*
Note: See TracChangeset for help on using the changeset viewer.