projects
/
dragonfly.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
kernel: Remove the old ep(4) and ex(4) network drivers.
[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