[BACK]Return to compat_sqlite3_errstr.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Annotation of mandoc/compat_sqlite3_errstr.c, Revision 1.4

1.1       schwarze    1: #include "config.h"
                      2:
1.3       schwarze    3: #if HAVE_SQLITE3_ERRSTR
1.1       schwarze    4:
                      5: int dummy;
                      6:
                      7: #else
                      8:
                      9: const char *
                     10: sqlite3_errstr(int rc)
                     11: {
                     12:
1.4     ! schwarze   13:        return rc ? "unknown error" : "not an error";
1.1       schwarze   14: }
                     15:
                     16: #endif

CVSweb