summaryrefslogtreecommitdiff
path: root/strings/strtol.c
diff options
context:
space:
mode:
authormonty@donna.mysql.com <>2000-10-04 23:20:16 +0300
committermonty@donna.mysql.com <>2000-10-04 23:20:16 +0300
commitb55de19ed2e26603858d51be232adfecf1c429f6 (patch)
treef355b0229e2ae229e8311da676b61658f1b0a052 /strings/strtol.c
parent9f7c4563f78f74999efd94768ec483d8c24c3761 (diff)
downloadmariadb-git-b55de19ed2e26603858d51be232adfecf1c429f6.tar.gz
Portability fixes
Diffstat (limited to 'strings/strtol.c')
-rw-r--r--strings/strtol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/strtol.c b/strings/strtol.c
index ae3fdd0e2b3..87fe0d22cf3 100644
--- a/strings/strtol.c
+++ b/strings/strtol.c
@@ -18,6 +18,6 @@
/* This defines strtol() if neaded */
#include <global.h>
-#if !defined(MSDOS) && !defined(HAVE_STRTOUL) && !defined(__WIN__)
+#if !defined(MSDOS) && !defined(HAVE_STRTOL) && !defined(__WIN__)
#include "strto.c"
#endif