php-src/ext/mysql/libmysql/strtoull.c

13 lines
340 B
C
Raw Normal View History

/* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
This file is public domain and comes with NO WARRANTY of any kind */
2000-02-19 10:10:46 +00:00
/* This is defines strtoull() */
#include <global.h>
#include <m_string.h>
#if !defined(HAVE_STRTOULL) && defined(HAVE_LONG_LONG)
#define UNSIGNED
#define LONGLONG
#include "strto.c"
#endif