Files
go-sqlite/main.c
Jan Mercl 11216f7304 Do not use fixed heap on Linux. Updates #12.
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
2017-06-13 15:18:34 +02:00

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;
}