From: Jim Meyering Date: Tue, 11 Jan 2000 14:05:28 +0000 (+0000) Subject: (memcpy): Protoize. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cada80c39eb8e6b19f36d6e02839b935b5dcab33;p=pspp (memcpy): Protoize. --- diff --git a/lib/memcpy.c b/lib/memcpy.c index b26d6a4fa8..2ccd718759 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;