From: Jim Meyering Date: Mon, 30 Nov 1998 02:58:21 +0000 (+0000) Subject: (dd_copy): Rename function from `copy'. X-Git-Tag: FILEUTILS-4_1-b1~75 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=90dbea92c4549a64fd6def3754cf3437a9d80853;p=thirdparty%2Fcoreutils.git (dd_copy): Rename function from `copy'. --- diff --git a/src/dd.c b/src/dd.c index f7d9c47a34..5a4b06b044 100644 --- 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); }