aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2005-05-24 12:01:00 +0000
committerdanielk1977 <danielk1977@noemail.net>2005-05-24 12:01:00 +0000
commitfd9a0a45a70bb1f47a48c2d73abc2461d000dbcd (patch)
tree64d3777f6418e0ad2ab9501c038151b96465d8da /src/sqliteInt.h
parentb71090fdfb8600dcf5fa386e21544eb294b081f4 (diff)
downloadsqlite-fd9a0a45a70bb1f47a48c2d73abc2461d000dbcd.tar.gz
sqlite-fd9a0a45a70bb1f47a48c2d73abc2461d000dbcd.zip
Move a few things around to make building without the parser easier. (CVS 2479)
FossilOrigin-Name: 5fadb464eb77b4b998d8555f83401769960ea904
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index a815be8e5..075f847ae 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
-** @(#) $Id: sqliteInt.h,v 1.381 2005/05/23 04:51:02 danielk1977 Exp $
+** @(#) $Id: sqliteInt.h,v 1.382 2005/05/24 12:01:02 danielk1977 Exp $
*/
#ifndef _SQLITEINT_H_
#define _SQLITEINT_H_
@@ -1578,4 +1578,8 @@ void sqlite3AlterFinishAddColumn(Parse *, Token *);
void sqlite3AlterBeginAddColumn(Parse *, SrcList *);
const char *sqlite3TestErrorName(int);
+#ifdef SQLITE_SSE
+#include "sseInt.h"
+#endif
+
#endif