summaryrefslogtreecommitdiff
path: root/strings/bmove512.c
diff options
context:
space:
mode:
Diffstat (limited to 'strings/bmove512.c')
-rw-r--r--strings/bmove512.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/strings/bmove512.c b/strings/bmove512.c
index bd863f82071..67776b78b57 100644
--- a/strings/bmove512.c
+++ b/strings/bmove512.c
@@ -1,4 +1,6 @@
-/* Copyright (c) 2000, 2001, 2003, 2006, 2007 MySQL AB
+/* Copyright (c) 2000 TXT DataKonsult Ab & Monty Program Ab
+ Copyright (c) 2000, 2001, 2003, 2006, 2007 MySQL AB
+ Copyright (c) 2009-2011, Monty Program Ab
Use is subject to license terms.
This program is free software; you can redistribute it and/or modify
@@ -27,15 +29,14 @@
fastest way to move a mutiple of 512 byte.
*/
-#include <my_global.h>
-#include "m_string.h"
+#include "strings_def.h"
#ifndef bmove512
#ifdef HAVE_LONG_LONG
#define LONG ulonglong
#else
-#define LONG ulonglong
+#define LONG ulong
#endif
void bmove512(uchar *to, const uchar *from, register size_t length)