]> git.saurik.com Git - minimal.git/blobdiff - sqlite3.h
Moved _trace to stderr.
[minimal.git] / sqlite3.h
index 9a95e943d8ab85d31c2cac50c9c833178d7ffc0c..b721343a7a0da202a423d27d364cb3d849be93b2 100644 (file)
--- a/sqlite3.h
+++ b/sqlite3.h
@@ -35,6 +35,9 @@
  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
+#ifndef MINIMAL_SQLITE3_H
+#define MINIMAL_SQLITE3_H
+
 #include <sqlite3.h>
 #include <string.h>
 
@@ -66,3 +69,5 @@ char *sqlite3_column_string(sqlite3_stmt *stmt, int n) {
 bool sqlite3_column_boolean(sqlite3_stmt *stmt, int n) {
     return sqlite3_column_int(stmt, n) != 0;
 }
+
+#endif/*MINIMAL_SQLITE3_H*/