netinet{,6}: Assert in{,6}_inithead() are only used for system routing tables.
[dragonfly.git] / contrib / mdocml / compat_sqlite3_errstr.c
1 #ifdef HAVE_CONFIG_H
2 #include "config.h"
3 #endif
4
5 #ifdef HAVE_SQLITE3_ERRSTR
6
7 int dummy;
8
9 #else
10
11 const char *
12 sqlite3_errstr(int rc)
13 {
14
15         return(rc ? "unknown error" : "not an error");
16 }
17
18 #endif