aboutsummaryrefslogtreecommitdiff
path: root/src/util.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2007-05-08 20:37:38 +0000
committerdrh <drh@noemail.net>2007-05-08 20:37:38 +0000
commitee85813c941f49b62c5e5d6cbddc561e3b56a613 (patch)
tree622542ce5c3b57808819351cd0532e4c1fbf5659 /src/util.c
parent52d19f65e36f08e662e971f47edbe039141f3c82 (diff)
downloadsqlite-ee85813c941f49b62c5e5d6cbddc561e3b56a613.tar.gz
sqlite-ee85813c941f49b62c5e5d6cbddc561e3b56a613.zip
Fix the amalgamation generator so that all non-API functions have file scope. (CVS 3958)
FossilOrigin-Name: e9f56ead0514f3eac75807ea710c1f035b8add4f
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util.c b/src/util.c
index cc73dc3a7..b79a14bf1 100644
--- a/src/util.c
+++ b/src/util.c
@@ -14,7 +14,7 @@
** This file contains functions for allocating memory, comparing
** strings, and stuff like that.
**
-** $Id: util.c,v 1.201 2007/05/05 11:48:54 drh Exp $
+** $Id: util.c,v 1.202 2007/05/08 20:37:40 drh Exp $
*/
#include "sqliteInt.h"
#include "os.h"
@@ -292,7 +292,7 @@ int sqlite3AtoF(const char *z, double *pResult){
*pResult = sign<0 ? -v1 : v1;
return z - zBegin;
#else
- return sqlite3atoi64(z, pResult);
+ return sqlite3Atoi64(z, pResult);
#endif /* SQLITE_OMIT_FLOATING_POINT */
}
@@ -307,7 +307,7 @@ int sqlite3AtoF(const char *z, double *pResult){
** 32-bit numbers. At that time, it was much faster than the
** atoi() library routine in RedHat 7.2.
*/
-int sqlite3atoi64(const char *zNum, i64 *pNum){
+int sqlite3Atoi64(const char *zNum, i64 *pNum){
i64 v = 0;
int neg;
int i, c;