mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 00:04:14 -05:00
8 lines
120 B
C
8 lines
120 B
C
#include <string.h>
|
|
#include <sqlite3.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
return strcmp(sqlite3_errstr(SQLITE_OK), "not an error");
|
|
}
|