aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test-sqlite3_errstr.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2016-07-19 21:31:55 +0000
committerIngo Schwarze <schwarze@openbsd.org>2016-07-19 21:31:55 +0000
commit490252b369661e1862919f425cdaf44accbeb1ae (patch)
tree8a0b59b3e70291eee1659e8a3fa736fd5f16f6a4 /test-sqlite3_errstr.c
parente5f4a3c1625e925c77bedecad81068d453990bc5 (diff)
downloadmandoc-490252b369661e1862919f425cdaf44accbeb1ae.tar.gz
mandoc-490252b369661e1862919f425cdaf44accbeb1ae.tar.zst
mandoc-490252b369661e1862919f425cdaf44accbeb1ae.zip
Remove the dependency on SQLite without loss of functionality.
Stop supporting systems that don't have mmap(3). Drop the obsolete names_check() now that we deleted MLINKS.
Diffstat (limited to 'test-sqlite3_errstr.c')
-rw-r--r--test-sqlite3_errstr.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/test-sqlite3_errstr.c b/test-sqlite3_errstr.c
deleted file mode 100644
index 4d3c7c54..00000000
--- a/test-sqlite3_errstr.c
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <string.h>
-#include <sqlite3.h>
-
-int
-main(void)
-{
- return strcmp(sqlite3_errstr(SQLITE_OK), "not an error");
-}