From: Bruno Haible Date: Wed, 12 Jan 2005 13:01:29 +0000 (+0000) Subject: Update 'memmove' and 'memset' modules from gnulib. X-Git-Tag: v0.14.2~166 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9177a68dfe6cec23cc2d8a429cec5d960d1fe9e5;p=thirdparty%2Fgettext.git Update 'memmove' and 'memset' modules from gnulib. --- diff --git a/gettext-tools/lib/ChangeLog b/gettext-tools/lib/ChangeLog index 1279c8e8d..b48431d82 100644 --- a/gettext-tools/lib/ChangeLog +++ b/gettext-tools/lib/ChangeLog @@ -97,6 +97,11 @@ * mbswidth.h: Add extern "C" for C++. Reported by Albert Chin-A-Young . +2003-09-09 Paul Eggert + + * memmove.c, memset.c: Include . + Use types required by C89 in prototype. + 2003-09-08 Paul Eggert * atexit.c (atexit): Define using a prototype. diff --git a/gettext-tools/lib/memmove.c b/gettext-tools/lib/memmove.c index 5d4af5d74..79cc78273 100644 --- a/gettext-tools/lib/memmove.c +++ b/gettext-tools/lib/memmove.c @@ -7,10 +7,13 @@ # include #endif +#include + void * -memmove (char *dest, const char *source, unsigned length) +memmove (void *dest0, void const *source0, size_t length) { - char *d0 = dest; + char *dest = dest0; + char const *source = source0; if (source < dest) /* Moving from low mem to hi mem; start at end. */ for (source += length, dest += length; length; --length) @@ -21,5 +24,5 @@ memmove (char *dest, const char *source, unsigned length) for (; length; --length) *dest++ = *source++; } - return (void *) d0; + return dest0; } diff --git a/gettext-tools/lib/memset.c b/gettext-tools/lib/memset.c index 5744bcbf7..d7321b200 100644 --- a/gettext-tools/lib/memset.c +++ b/gettext-tools/lib/memset.c @@ -1,5 +1,5 @@ /* memset.c -- set an area of memory to a given value - Copyright (C) 1991 Free Software Foundation, Inc. + Copyright (C) 1991, 2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -15,8 +15,10 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -char * -memset (char *str, int c, unsigned int len) +#include + +void * +memset (void *str, int c, size_t len) { register char *st = str;