summaryrefslogtreecommitdiff
path: root/ext/mysql/libmysql/strtoll.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2002-04-07 20:49:10 +0000
committerAndi Gutmans <andi@php.net>2002-04-07 20:49:10 +0000
commit35befd3eb32bf4fdba7dc0350727b0e77392a7c2 (patch)
tree6a10c24b69b09f201dff39d2b4b90cd87a78dc21 /ext/mysql/libmysql/strtoll.c
parent6ac6b788187aaa330cf03a738721f99867472f49 (diff)
downloadphp-git-35befd3eb32bf4fdba7dc0350727b0e77392a7c2.tar.gz
- Fix build with Visual Studio .NET. The MySQL team said they'll commit
- their fix a long time ago and never did. One day they'll update the - whole MySQL client library.
Diffstat (limited to 'ext/mysql/libmysql/strtoll.c')
-rw-r--r--ext/mysql/libmysql/strtoll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysql/libmysql/strtoll.c b/ext/mysql/libmysql/strtoll.c
index 4dde6e4e87..6acb8ff84d 100644
--- a/ext/mysql/libmysql/strtoll.c
+++ b/ext/mysql/libmysql/strtoll.c
@@ -6,6 +6,6 @@ This file is public domain and comes with NO WARRANTY of any kind */
#include <global.h>
#include <m_string.h>
#if !defined(HAVE_STRTOULL) && defined(HAVE_LONG_LONG)
-#define LONGLONG
+#define MYSQL_LONGLONG
#include "strto.c"
#endif