]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(dd_copy): Rename function from `copy'.
authorJim Meyering <jim@meyering.net>
Mon, 30 Nov 1998 02:58:21 +0000 (02:58 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 30 Nov 1998 02:58:21 +0000 (02:58 +0000)
src/dd.c

index f7d9c47a341e9515a5feb970c5737708ae293830..5a4b06b044be56def0bea7331c8f4a5a14b290ba 100644 (file)
--- a/src/dd.c
+++ b/src/dd.c
@@ -932,7 +932,7 @@ copy_with_unblock (unsigned char *buf, int nread)
 /* The main loop.  */
 
 static int
-copy (void)
+dd_copy (void)
 {
   unsigned char *ibuf, *bufstart; /* Input buffer. */
   int nread;                   /* Bytes read in the current block. */
@@ -1174,7 +1174,7 @@ main (int argc, char **argv)
   install_handler (SIGPIPE, interrupt_handler);
   install_handler (SIGINFO, siginfo_handler);
 
-  exit_status = copy ();
+  exit_status = dd_copy ();
 
   quit (exit_status);
 }