+1999-08-25 Ken Raeburn <raeburn@mit.edu>
+
+ * old_decrypt.c (memmove) [HAVE_BCOPY && !HAVE_MEMMOVE]: Define to
+ use bcopy. Should work unless any system has no memmove *and*
+ bcopy isn't safe with overlaps.
+
Mon May 10 15:20:32 1999 Danilo Almeida <dalmeida@mit.edu>
* Makefile.in: Do win32 build in subdir.
#include "k5-int.h"
#include "old.h"
+#ifndef HAVE_MEMMOVE
+#ifdef HAVE_BCOPY
+#define memmove(dst,src,size) bcopy(src,dst,size)
+#endif
+#endif
+
krb5_error_code
krb5_old_decrypt(enc, hash, key, usage, ivec, input, arg_output)
krb5_const struct krb5_enc_provider *enc;