Remove the iCollate argument from sqlite3_create_function() (CVS 1632)

FossilOrigin-Name: 728d57ff5517a51c3aad4ba95525b1aa2065bd19
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index e714dd6..87d1fba 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -11,7 +11,7 @@
 *************************************************************************
 ** Internal interface definitions for SQLite.
 **
-** @(#) $Id: sqliteInt.h,v 1.290 2004/06/19 03:33:57 danielk1977 Exp $
+** @(#) $Id: sqliteInt.h,v 1.291 2004/06/19 08:18:19 danielk1977 Exp $
 */
 #include "config.h"
 #include "sqlite3.h"
@@ -138,6 +138,8 @@
 #define SQLITE_BIGENDIAN    (*(char *)(&sqlite3one)==0)
 #define SQLITE_LITTLEENDIAN (*(char *)(&sqlite3one)==1)
 
+typedef struct sqlite sqlite;
+
 /*
 ** Defer sourcing vdbe.h until after the "u8" typedef is defined.
 */
@@ -273,7 +275,6 @@
 typedef struct KeyInfo KeyInfo;
 typedef struct BusyHandler BusyHandler;
 
-
 /*
 ** Each database file to be accessed by the system is an instance
 ** of the following structure.  There are normally two of these structures