summaryrefslogblamecommitdiffstats
path: root/compat_sqlite3_errstr.c
blob: 8a6ace28e8cd3e884963b6e65b27bc8a535b90bd (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                   
 
                       








                      
                                                     


      
#include "config.h"

#if HAVE_SQLITE3_ERRSTR

int dummy;

#else

const char *
sqlite3_errstr(int rc)
{

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

#endif