From 0cda28f77bcea25a35b2d55ee1bb52c5fdb34f2a Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Sat, 19 Feb 2000 10:10:46 +0000 Subject: - Add libmysql to the tree --- ext/mysql/libmysql/strtoull.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 ext/mysql/libmysql/strtoull.c (limited to 'ext/mysql/libmysql/strtoull.c') diff --git a/ext/mysql/libmysql/strtoull.c b/ext/mysql/libmysql/strtoull.c new file mode 100644 index 0000000000..fbb23e0f20 --- /dev/null +++ b/ext/mysql/libmysql/strtoull.c @@ -0,0 +1,12 @@ +/* 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 +#include +#if !defined(HAVE_STRTOULL) && defined(HAVE_LONG_LONG) +#define UNSIGNED +#define LONGLONG +#include "strto.c" +#endif -- cgit v1.2.1