Changeset 173 for trunk/src/dnmalloc.c


Ignore:
Timestamp:
Aug 18, 2008, 8:26:30 PM (16 years ago)
Author:
katerina
Message:

x dnmalloc compile error (ticket #110).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/dnmalloc.c

    r172 r173  
    9797   further to 1.0:
    9898   Valgrind client requests inserted (#define USE_VALGRIND)
    99    Fix malloc_consolidate (nextchunk->fd, nextchunk->bck may be NULL)
     99   Fix: malloc_consolidate (nextchunk->fd, nextchunk->bck may be NULL)
    100100   Portability: minsize = 32 bit on 64bit architecture
    101101   Minor cleanups
     102   Fix: eliminate prototypes for memset, memcpy (they're in string.h)
    102103
    103104   There may be some bugs left in this version. please use with caution.
     
    586587
    587588#ifdef WIN32
    588 /* On Win32 memset and memcpy are already declared in windows.h */
     589  /* On Win32 memset and memcpy are already declared in windows.h */
    589590#else
    590591#if __STD_C
    591 void* memset(void*, int, size_t);
    592 void* memcpy(void*, const void*, size_t);
     592  /* Defined in string.h */
    593593#else
    594594Void_t* memset();
Note: See TracChangeset for help on using the changeset viewer.