mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 08:13:38 -05:00
16 lines
161 B
C
16 lines
161 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
|