mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 14:09:13 +00:00
Typo.
This commit is contained in:
@@ -1,15 +1,16 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "sqlite3.h"
|
||||
|
||||
int main() {
|
||||
int rc = sqlite3_initialize();
|
||||
if (rc != SQLITE_OK) return -1;
|
||||
int rc = sqlite3_initialize();
|
||||
if (rc != SQLITE_OK) return -1;
|
||||
}
|
||||
|
||||
sqlite3_vfs *sqlite3_demovfs();
|
||||
|
||||
int sqlite3_os_init() {
|
||||
return sqlite3_vfs_register(sqlite3_demovfs(), /*default=*/1);
|
||||
return sqlite3_vfs_register(sqlite3_demovfs(), /*default=*/1);
|
||||
}
|
||||
|
||||
sqlite3_destructor_type malloc_destructor = &free;
|
||||
Reference in New Issue
Block a user