Change some code that assumes the root-page of sqlite_master is 2 (it is
now 1) (CVS 1333)

FossilOrigin-Name: 37ae528fb85799007f4ddfc56a7d9493dbb29cbf
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 3c25146..a3e28d2 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -11,7 +11,7 @@
 *************************************************************************
 ** Internal interface definitions for SQLite.
 **
-** @(#) $Id: sqliteInt.h,v 1.224 2004/05/08 08:23:36 danielk1977 Exp $
+** @(#) $Id: sqliteInt.h,v 1.225 2004/05/10 01:17:37 danielk1977 Exp $
 */
 #include "config.h"
 #include "sqlite.h"
@@ -218,6 +218,11 @@
 #define TEMP_MASTER_NAME  "sqlite_temp_master"
 
 /*
+** The root-page of the master database table.
+*/
+#define MASTER_ROOT       1
+
+/*
 ** The name of the schema table.
 */
 #define SCHEMA_TABLE(x)  (x?TEMP_MASTER_NAME:MASTER_NAME)