(memcpy): Protoize.
authorJim Meyering <jim@meyering.net>
Tue, 11 Jan 2000 14:05:28 +0000 (14:05 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 11 Jan 2000 14:05:28 +0000 (14:05 +0000)
lib/memcpy.c

index b26d6a4..2ccd718 100644 (file)
@@ -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
    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;