]> git.cameronkatri.com Git - mandoc.git/blob - compat_sqlite3_errstr.c
Improve build system and autodetection.
[mandoc.git] / compat_sqlite3_errstr.c
1 #include "config.h"
2
3 #if HAVE_SQLITE3_ERRSTR
4
5 int dummy;
6
7 #else
8
9 const char *
10 sqlite3_errstr(int rc)
11 {
12
13 return(rc ? "unknown error" : "not an error");
14 }
15
16 #endif