diff options
author | unknown <greg@mysql.com> | 2003-11-12 02:25:01 -0500 |
---|---|---|
committer | unknown <greg@mysql.com> | 2003-11-12 02:25:01 -0500 |
commit | f5ea1f4f2ff8c3a6cedfeaf19efe81c4c2943fad (patch) | |
tree | f6956fd80f934e2ec687bef379cf4c7c61743991 /strings/my_strtoll10.c | |
parent | 9dbaca650210a6eaac3e89cc0e219a2398fb58f5 (diff) | |
download | mariadb-git-f5ea1f4f2ff8c3a6cedfeaf19efe81c4c2943fad.tar.gz |
Resolved build problem: undeclared macros
strings/my_strtoll10.c:
Include my_sys.h for MY_ERRNO_ERANGE and MY_ERRNO_EDOM macros.
Diffstat (limited to 'strings/my_strtoll10.c')
-rw-r--r-- | strings/my_strtoll10.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/strings/my_strtoll10.c b/strings/my_strtoll10.c index cf324fb4468..d741fac6825 100644 --- a/strings/my_strtoll10.c +++ b/strings/my_strtoll10.c @@ -15,6 +15,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include <my_global.h> +#include <my_sys.h> #include <m_string.h> #define ULONGLONG_MAX (~(ulonglong) 0) |