repo.or.cz
/
dragonfly.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tools/tcp_stream: Set message size on both send and receive sides
[dragonfly.git]
/
contrib
/
mdocml
/
compat_sqlite3_errstr.c
blob
b8d6eb58f1cc64014f7285afb96968b8ab122e8a
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