PennMUSH Community
Show
Ignore:
Timestamp:
09/23/08 12:50:40 (2 months ago)
Author:
shawnw
Message:

Prep for 1.8.3p7

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 1.8.3/trunk/src/csrimalloc.c

    r1167 r1278  
    729729 */ 
    730730Word *_malloc_rovers[MAXBINS + 1] = { NULL }; 
     731 
    731732const size_t _malloc_binmax[MAXBINS] = { 
    732733  8, 16, 32, 64, 128, 256, 512, 1024 
    733734}; 
     735 
    734736int _malloc_firstbin = 0; 
    735737int _malloc_lastbin = 0; 
     
    9981000univptr_t 
    9991001erealloc(univptr_t ptr, size_t nbytes); 
    1000     Free_t 
    1001      free(univptr_t cp); 
    1002     Free_t 
    1003      cfree(univptr_t cp); 
     1002Free_t 
     1003free(univptr_t cp); 
     1004Free_t 
     1005cfree(univptr_t cp); 
    10041006#endif                          /* CSRI_TRACE */ 
    10051007