]> git.cameronkatri.com Git - mandoc.git/blobdiff - compat_sqlite3_errstr.c
Reject the escape sequences \[uD800] to \[uDFFF] in the parser.
[mandoc.git] / compat_sqlite3_errstr.c
index b8d6eb58f1cc64014f7285afb96968b8ab122e8a..8a6ace28e8cd3e884963b6e65b27bc8a535b90bd 100644 (file)
@@ -1,8 +1,6 @@
-#ifdef HAVE_CONFIG_H
 #include "config.h"
 #include "config.h"
-#endif
 
 
-#ifdef HAVE_SQLITE3_ERRSTR
+#if HAVE_SQLITE3_ERRSTR
 
 int dummy;
 
 
 int dummy;
 
@@ -12,7 +10,7 @@ const char *
 sqlite3_errstr(int rc)
 {
 
 sqlite3_errstr(int rc)
 {
 
-       return(rc ? "unknown error" : "not an error");
+       return rc ? "unknown error" : "not an error";
 }
 
 #endif
 }
 
 #endif