php-src/ext/mysql/libmysql/strtoll.c
2002-06-07 15:07:55 +00:00

12 lines
335 B
C

/* 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 strtoll() if neaded */
#include <global.h>
#include <m_string.h>
#if !defined(HAVE_STRTOLL) && defined(HAVE_LONG_LONG)
#define USE_LONGLONG
#include "strto.c"
#endif