1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-07 02:42:49 +03:00

Fix for CONC-105: remove longlong definition from mysql.h to prevent collides with other projects

This commit is contained in:
Georg Richter
2014-09-17 19:14:09 +02:00
parent 6cd41756de
commit a292115104

View File

@@ -125,15 +125,6 @@ extern char *mysql_unix_port;
typedef unsigned long long my_ulonglong;
#endif
#ifndef longlong_defined
#if defined(HAVE_LONG_LONG) && SIZEOF_LONG != 8
typedef long long int longlong;
#else
typedef long longlong;
#endif
#define longlong_defined
#endif
/* mysql compatibility macro */
#define mysql_options4(A,B,C,D) mysql_optionsv((A),(B),(C),(D))