[ar71xx_gpio] handle AR934x and QCA953x GPIO OE polarity.
[freebsd.git] / contrib / mdocml / 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