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/strtoll.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ext/mysql/libmysql/strtoll.c (limited to 'ext/mysql/libmysql/strtoll.c') diff --git a/ext/mysql/libmysql/strtoll.c b/ext/mysql/libmysql/strtoll.c new file mode 100644 index 0000000000..3b8f9bf368 --- /dev/null +++ b/ext/mysql/libmysql/strtoll.c @@ -0,0 +1,11 @@ +/* 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 strtoll() if neaded */ + +#include +#include +#if !defined(HAVE_STRTOULL) && defined(HAVE_LONG_LONG) +#define LONGLONG +#include "strto.c" +#endif -- cgit v1.2.1