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