1#include <string.h>
2#include <sqlite3.h>
3
4int
5main(void)
6{
7	return strcmp(sqlite3_errstr(SQLITE_OK), "not an error");
8}
9