summaryrefslogtreecommitdiff
path: root/src/tparam.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tparam.c')
-rw-r--r--src/tparam.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/tparam.c b/src/tparam.c
index a35647799cb..c768581aeb5 100644
--- a/src/tparam.c
+++ b/src/tparam.c
@@ -35,11 +35,6 @@ char *malloc ();
char *realloc ();
#endif
-/* Do this after the include, in case string.h prototypes bcopy. */
-#if (defined(HAVE_STRING_H) || defined(STDC_HEADERS)) && !defined(bcopy)
-#define bcopy(s, d, n) memcpy ((d), (s), (n))
-#endif
-
#endif /* not emacs */
#ifndef NULL
@@ -151,7 +146,7 @@ tparam1 (char *string, char *outstring, int len, char *up, char *left, register
{
outlen = len + 40;
new = (char *) xmalloc (outlen);
- bcopy (outstring, new, offset);
+ memcpy (new, outstring, offset);
}
else
{