summaryrefslogtreecommitdiff
path: root/ext/mysql/libmysql/strtoull.c
blob: 8ab99fb0c2b8d61bbb07f2252e6b9f32e28c514b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB 
This file is public domain and comes with NO WARRANTY of any kind */

/* This is defines strtoull() */

#include <global.h>
#include <m_string.h>
#if !defined(HAVE_STRTOULL) && defined(HAVE_LONG_LONG)
#define UNSIGNED
#define MYSQL_LONGLONG
#include "strto.c"
#endif