diff options
author | danielk1977 <danielk1977@noemail.net> | 2004-05-08 08:23:19 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2004-05-08 08:23:19 +0000 |
commit | 4adee20fcbeb358c32a8cd6cf237c3cb4ee0744e (patch) | |
tree | e0a859d56472693c646655e438855735733df9a5 /src/encode.c | |
parent | 9b171277051d84f2ddb8b12a64a7a62b0be4d0e8 (diff) | |
download | sqlite-4adee20fcbeb358c32a8cd6cf237c3cb4ee0744e.tar.gz sqlite-4adee20fcbeb358c32a8cd6cf237c3cb4ee0744e.zip |
Change lots of internal symbols from sqliteXXX to sqlite3XXX so that the
library links again. It doesn't work yet, due to changes in the btree layer
calling convention. (CVS 1324)
FossilOrigin-Name: 8af6474c49263ae26216dff9465b33f76b500cf4
Diffstat (limited to 'src/encode.c')
-rw-r--r-- | src/encode.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/encode.c b/src/encode.c index 01b4876fc..71ed23143 100644 --- a/src/encode.c +++ b/src/encode.c @@ -15,7 +15,7 @@ ** data in an SQLite database. The code in this file is not used by any other ** part of the SQLite library. ** -** $Id: encode.c,v 1.12 2004/03/17 18:44:46 drh Exp $ +** $Id: encode.c,v 1.13 2004/05/08 08:23:24 danielk1977 Exp $ */ #include <string.h> #include <assert.h> @@ -252,3 +252,6 @@ int main(int argc, char **argv){ (nByteOut-nByteIn)*100.0/(double)nByteIn); } #endif /* ENCODER_TEST */ + + + |