OSDN Git Service

2008-05-27 Jeff Johnston <jjohnstn@redhat.com>
authorjjohnstn <jjohnstn>
Tue, 27 May 2008 18:44:38 +0000 (18:44 +0000)
committerjjohnstn <jjohnstn>
Tue, 27 May 2008 18:44:38 +0000 (18:44 +0000)
        * libc/string/memset.c: Fix documented prototype to remove
        erroneous const attribute on first parameter.

newlib/ChangeLog
newlib/libc/string/memset.c

index fd19b2f..2e9ecc4 100644 (file)
@@ -1,3 +1,8 @@
+2008-05-27  Jeff Johnston  <jjohnstn@redhat.com>
+
+       * libc/string/memset.c: Fix documented prototype to remove
+       erroneous const attribute on first parameter.
+
 2008-05-26  Eric Blake  <ebb9@byu.net>
 
        Optimize the generic and x86 memchr.
index 8dbb5f8..55d2ce1 100644 (file)
@@ -7,7 +7,7 @@ INDEX
 
 ANSI_SYNOPSIS
        #include <string.h>
-       void *memset(const void *<[dst]>, int <[c]>, size_t <[length]>);
+       void *memset(void *<[dst]>, int <[c]>, size_t <[length]>);
 
 TRAD_SYNOPSIS
        #include <string.h>