blob: b8d6eb58f1cc64014f7285afb96968b8ab122e8a (
plain) (
tree)
|
|
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef HAVE_SQLITE3_ERRSTR
int dummy;
#else
const char *
sqlite3_errstr(int rc)
{
return(rc ? "unknown error" : "not an error");
}
#endif
|