mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-12 14:29:28 +00:00
9 lines
121 B
C
9 lines
121 B
C
#include <string.h>
|
|
#include <sqlite3.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
return(strcmp(sqlite3_errstr(SQLITE_OK), "not an error"));
|
|
}
|