Index: trunk/src/dnmalloc.c
===================================================================
--- trunk/src/dnmalloc.c	(revision 172)
+++ trunk/src/dnmalloc.c	(revision 173)
@@ -97,7 +97,8 @@
    further to 1.0:
    Valgrind client requests inserted (#define USE_VALGRIND)
-   Fix malloc_consolidate (nextchunk->fd, nextchunk->bck may be NULL)
+   Fix: malloc_consolidate (nextchunk->fd, nextchunk->bck may be NULL)
    Portability: minsize = 32 bit on 64bit architecture
    Minor cleanups
+   Fix: eliminate prototypes for memset, memcpy (they're in string.h)
 
    There may be some bugs left in this version. please use with caution.
@@ -586,9 +587,8 @@
 
 #ifdef WIN32
-/* On Win32 memset and memcpy are already declared in windows.h */
+  /* On Win32 memset and memcpy are already declared in windows.h */
 #else
 #if __STD_C
-void* memset(void*, int, size_t);
-void* memcpy(void*, const void*, size_t);
+  /* Defined in string.h */
 #else
 Void_t* memset();
