summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/dd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dd.c b/src/dd.c
index f7d9c47a3..5a4b06b04 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);
}