php-src/ext/mysql/libmysql/strtoull.c
2000-08-22 17:59:35 +00:00

13 lines
341 B
C

/* Copyright (C) 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
For a more info consult the file COPYRIGHT distributed with this file */
/* 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