aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/compat_sqlite3_errstr.c
blob: b469601918bfa4364a6c09661ef723cead36293b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "config.h"

#ifdef HAVE_SQLITE3_ERRSTR

int dummy;

#else

const char *
sqlite3_errstr(int rc)
{

	return(rc ? "unknown error" : "not an error");
}

#endif