X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fmemcpy.c;h=2ccd71875924967640de05ea78fdb154a0a181a7;hb=39fcb4103371f5cf844e296fd3cc9d594555af6a;hp=b26d6a4fa890c3d6b9e10c57baee1fbbf7a9a2b1;hpb=39fab1a2ebef24092dc7c992a5c0df7e6075b3f6;p=gnulib.git diff --git a/lib/memcpy.c b/lib/memcpy.c index b26d6a4fa..2ccd71875 100644 --- a/lib/memcpy.c +++ b/lib/memcpy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1995, 1997, 2000 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 @@ -25,10 +25,7 @@ Return DESTADDR. */ char * -memcpy (destaddr, srcaddr, len) - char *destaddr; - const char *srcaddr; - int len; +memcpy (char *destaddr, const char *srcaddr, int len) { char *dest = destaddr;