mirror of
https://github.com/glebarez/go-sqlite.git
synced 2025-10-05 15:56:52 +08:00

modified: all_test.go modified: generator.go modified: internal/bin/bin_linux_386.go modified: internal/bin/bin_linux_amd64.go modified: main.c modified: sqlite.go modified: sqlite_go18.go
14 lines
334 B
C
14 lines
334 B
C
// Copyright 2017 The Sqlite Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build ignore
|
|
|
|
#include <sqlite3.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
// Prevent the linker from optimizing out everything.
|
|
int (*f) (int, ...) = sqlite3_config;
|
|
}
|