freebsd-dev/contrib/mdocml/compat_sqlite3_errstr.c

17 lines
162 B
C
Raw Normal View History

2014-11-22 18:08:25 +00:00
#include "config.h"
#if HAVE_SQLITE3_ERRSTR
2014-11-22 18:08:25 +00:00
int dummy;
#else
const char *
sqlite3_errstr(int rc)
{
return(rc ? "unknown error" : "not an error");
}
#endif