aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2005-01-28 01:29:08 +0000
committerdrh <drh@noemail.net>2005-01-28 01:29:08 +0000
commitb659e9bf7a1aead8f67fe602fd29ff8ee8f10905 (patch)
tree4324fa6ce90a678042798e1e2cec44e475fdcb0b /src
parente63739a8686360067f130b5dc3bf4458a3782c43 (diff)
downloadsqlite-b659e9bf7a1aead8f67fe602fd29ff8ee8f10905.tar.gz
sqlite-b659e9bf7a1aead8f67fe602fd29ff8ee8f10905.zip
Make sure the #include of "sqliteInt.h" always comes first in C source files. (CVS 2284)
FossilOrigin-Name: 522c094f799220468780acb77731edb715bf5e3c
Diffstat (limited to 'src')
-rw-r--r--src/func.c4
-rw-r--r--src/utf.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/func.c b/src/func.c
index c4412035a..7e2aab642 100644
--- a/src/func.c
+++ b/src/func.c
@@ -16,13 +16,13 @@
** sqliteRegisterBuildinFunctions() found at the bottom of the file.
** All other code has file scope.
**
-** $Id: func.c,v 1.92 2005/01/11 13:02:34 danielk1977 Exp $
+** $Id: func.c,v 1.93 2005/01/28 01:29:08 drh Exp $
*/
+#include "sqliteInt.h"
#include <ctype.h>
#include <math.h>
#include <stdlib.h>
#include <assert.h>
-#include "sqliteInt.h"
#include "vdbeInt.h"
#include "os.h"
diff --git a/src/utf.c b/src/utf.c
index 5734635bb..db6a89b6e 100644
--- a/src/utf.c
+++ b/src/utf.c
@@ -12,7 +12,7 @@
** This file contains routines used to translate between UTF-8,
** UTF-16, UTF-16BE, and UTF-16LE.
**
-** $Id: utf.c,v 1.31 2005/01/12 07:15:06 danielk1977 Exp $
+** $Id: utf.c,v 1.32 2005/01/28 01:29:08 drh Exp $
**
** Notes on UTF-8:
**
@@ -58,8 +58,8 @@
** sqlite3utf8LikeCompare() - Do a LIKE match given two UTF8 char* strings.
**
*/
-#include <assert.h>
#include "sqliteInt.h"
+#include <assert.h>
#include "vdbeInt.h"
/*