summaryrefslogtreecommitdiff
path: root/include/m_string.h
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2001-12-17 03:02:58 +0200
committermonty@hundin.mysql.fi <>2001-12-17 03:02:58 +0200
commit4dbd9e061c35d79e96079b05408dd584c09f2c15 (patch)
tree941257314e6e021bd649a4b42156be700895e6a0 /include/m_string.h
parentfc3e066f36e3b084674cbb9f3febb67e0ddbbc09 (diff)
downloadmariadb-git-4dbd9e061c35d79e96079b05408dd584c09f2c15.tar.gz
Lots of portability fixes.
Fixed shutdown on HPUX. Fixed bug in query cache.
Diffstat (limited to 'include/m_string.h')
-rw-r--r--include/m_string.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/m_string.h b/include/m_string.h
index 6e906bef023..17b5a07a10b 100644
--- a/include/m_string.h
+++ b/include/m_string.h
@@ -131,11 +131,11 @@ extern void bzero(gptr dst,uint len);
#if !defined(bcmp) && !defined(HAVE_BCMP)
extern int bcmp(const char *s1,const char *s2,uint len);
+#endif
#ifdef HAVE_purify
extern int my_bcmp(const char *s1,const char *s2,uint len);
#define bcmp(A,B,C) my_bcmp((A),(B),(C))
#endif
-#endif
#ifndef bmove512
extern void bmove512(gptr dst,const gptr src,uint len);