Changeset 173 for trunk/src/dnmalloc.c
- Timestamp:
- Aug 18, 2008, 8:26:30 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/dnmalloc.c
r172 r173 97 97 further to 1.0: 98 98 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) 100 100 Portability: minsize = 32 bit on 64bit architecture 101 101 Minor cleanups 102 Fix: eliminate prototypes for memset, memcpy (they're in string.h) 102 103 103 104 There may be some bugs left in this version. please use with caution. … … 586 587 587 588 #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 */ 589 590 #else 590 591 #if __STD_C 591 void* memset(void*, int, size_t); 592 void* memcpy(void*, const void*, size_t); 592 /* Defined in string.h */ 593 593 #else 594 594 Void_t* memset();
Note:
See TracChangeset
for help on using the changeset viewer.