blob: f6f354ff549cfccb791b35979d2c0605072d4db6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// 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>
static void use(int, ...)
{
}
int main(int argc, char **argv)
{
use(0, sqlite3_exec, sqlite3_enable_load_extension);
}
|