diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2017-01-21 13:01:39 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2017-01-21 13:01:39 +0000 |
commit | ef7476572c9a18c0cb4d5dbaf3a81f1628419abb (patch) | |
tree | 0358496ea53f35b6dc31f8a296a2021c99db1b89 /compat_sqlite3_errstr.c | |
parent | 05798824d24a3b26ef3439303ad694202c75729e (diff) |
Notes
Diffstat (limited to 'compat_sqlite3_errstr.c')
-rw-r--r-- | compat_sqlite3_errstr.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/compat_sqlite3_errstr.c b/compat_sqlite3_errstr.c deleted file mode 100644 index 8a6ace28e8cd..000000000000 --- a/compat_sqlite3_errstr.c +++ /dev/null @@ -1,16 +0,0 @@ -#include "config.h" - -#if HAVE_SQLITE3_ERRSTR - -int dummy; - -#else - -const char * -sqlite3_errstr(int rc) -{ - - return rc ? "unknown error" : "not an error"; -} - -#endif |