1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-12-24 14:17:58 +03:00

Omit some extra code when OMIT_INCRBLOB is defined. (CVS 4014)

FossilOrigin-Name: 1d89be287d34423b1a405cde0490260e7c731f07
This commit is contained in:
danielk1977
2007-05-16 14:23:00 +00:00
parent b36d20d4ae
commit 246ad31db6
6 changed files with 28 additions and 16 deletions

View File

@@ -9,7 +9,7 @@
** May you share freely, never taking more than you give.
**
*************************************************************************
** $Id: btreeInt.h,v 1.2 2007/05/05 18:39:25 drh Exp $
** $Id: btreeInt.h,v 1.3 2007/05/16 14:23:00 danielk1977 Exp $
**
** This file implements a external (disk-based) database using BTrees.
** For a detailed discussion of BTrees, refer to
@@ -570,7 +570,7 @@ struct IntegrityCk {
/*
** Read or write a two- and four-byte big-endian integer values.
*/
#define get2byte sqlite3Get2byte
#define get2byte(x) ((x)[0]<<8 | (x)[1])
#define get4byte sqlite3Get4byte
#define put2byte sqlite3Put2byte
#define put4byte sqlite3Put4byte