diff options
author | shane <shane@noemail.net> | 2009-02-04 03:59:25 +0000 |
---|---|---|
committer | shane <shane@noemail.net> | 2009-02-04 03:59:25 +0000 |
commit | fbd60f826d0276401c6dd3d085ce4ebb7843836e (patch) | |
tree | d841324093c9e0c02e0268fcb52baab06a5e48a3 /src/util.c | |
parent | 63207ab2623be80c0a63c777f71e86d81d732f1d (diff) | |
download | sqlite-fbd60f826d0276401c6dd3d085ce4ebb7843836e.tar.gz sqlite-fbd60f826d0276401c6dd3d085ce4ebb7843836e.zip |
Changes to completely remove all floating point ops if SQLITE_OMIT_FLOATING_POINT defined. Note that w/o fp, date/time, round, nan, etc. are all gone or limited in functionality. Updated some of the test scripts to support missing fp and 64-bit functionality. Ticket #3029. (CVS 6250)
FossilOrigin-Name: 5cef400023205b55152b91441acc78f9cd8d58a9
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/util.c b/src/util.c index 4eb01b0da..829dfe847 100644 --- a/src/util.c +++ b/src/util.c @@ -14,12 +14,11 @@ ** This file contains functions for allocating memory, comparing ** strings, and stuff like that. ** -** $Id: util.c,v 1.247 2009/01/20 16:53:41 danielk1977 Exp $ +** $Id: util.c,v 1.248 2009/02/04 03:59:25 shane Exp $ */ #include "sqliteInt.h" #include <stdarg.h> - /* ** Routine needed to support the testcase() macro. */ |