1fb816da82
- Compatiblity with existing manpages has been improved - Now support ".so" directive with compressed manpages (which fixes a regression we have since we have new man(1))
17 lines
162 B
C
17 lines
162 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
|