define the macro if it's not already defined.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15795
dc483132-0cff-0310-8789-
dd5450dbe970
+2003-08-26 Ken Raeburn <raeburn@mit.edu>
+
+ * getdate.y (bcopy): Don't bother with HAVE_BCOPY and HAVE_MEMCPY
+ tests; always define the macro if it's not already defined.
+
2003-06-24 Ken Raeburn <raeburn@mit.edu>
* kadmin.c (strdate): Increase size of buffer to 40. Use sizeof
/* Some old versions of bison generate parsers that use bcopy.
That loses on systems that don't provide the function, so we have
to redefine it here. */
-#if !defined (HAVE_BCOPY) && defined (HAVE_MEMCPY) && !defined (bcopy)
+#ifndef bcopy
#define bcopy(from, to, len) memcpy ((to), (from), (len))
#endif