]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/mdocml/compat_sqlite3_errstr.c
Update mandoc to cvs snaphot from 20150302
[FreeBSD/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