freebsd-dev/contrib/mdocml/compat_sqlite3_errstr.c
Baptiste Daroussin 1fb816da82 Update to mandoc cvs version as of 20141201
- Compatiblity with existing manpages has been improved
- Now support ".so" directive with compressed manpages (which fixes a regression
we have since we have new man(1))
2014-12-02 23:24:57 +00:00

17 lines
162 B
C

#include "config.h"
#if HAVE_SQLITE3_ERRSTR
int dummy;
#else
const char *
sqlite3_errstr(int rc)
{
return(rc ? "unknown error" : "not an error");
}
#endif