aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authorstephan <stephan@noemail.net>2024-05-10 09:26:53 +0000
committerstephan <stephan@noemail.net>2024-05-10 09:26:53 +0000
commit8292aa7a18da4d4f5b927bf396479f460ff6d041 (patch)
treea3d3d4bd3dcaa43918b8b7265e9699bb9a307f9b /src/sqliteInt.h
parenta8c43830f2bdfe7777350646040f70285a665e9f (diff)
downloadsqlite-8292aa7a18da4d4f5b927bf396479f460ff6d041.tar.gz
sqlite-8292aa7a18da4d4f5b927bf396479f460ff6d041.zip
Squelch two OMIT-flag-related warnings reported in [forum:388243d9882067a9|forum post 388243d9882067a9]. No functional changes.
FossilOrigin-Name: 1d6716054d7fc50df237996c3db30e5fb8e32acbf48cb8b9af472360515945c4
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 0d33f9ee2..0da289d52 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -5267,7 +5267,9 @@ void sqlite3ErrorWithMsg(sqlite3*, int, const char*,...);
void sqlite3Error(sqlite3*,int);
void sqlite3ErrorClear(sqlite3*);
void sqlite3SystemError(sqlite3*,int);
+#if !defined(SQLITE_OMIT_BLOB_LITERAL)
void *sqlite3HexToBlob(sqlite3*, const char *z, int n);
+#endif
u8 sqlite3HexToInt(int h);
int sqlite3TwoPartName(Parse *, Token *, Token *, Token **);