summaryrefslogtreecommitdiff
path: root/db.h
diff options
context:
space:
mode:
Diffstat (limited to 'db.h')
-rw-r--r--db.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/db.h b/db.h
index 93fdb43..e121593 100644
--- a/db.h
+++ b/db.h
@@ -13,6 +13,8 @@
#define ULEN(X) (X == 0 ? 1 : (int)floor(log10(X)) + 1)
#define LLEN(X) ((int)floor(log10(llabs(X))) + 1 + ((X < 0) ? 1 : 0))
+extern sqlite3_stmt *stmt_global_stat;
+
extern sqlite3 *db;
void db_init(void);