2021-08-29 14:41:41 +00:00
|
|
|
// Copyright 2019 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.
|
|
|
|
|
2025-02-03 12:13:51 +00:00
|
|
|
//go:build !(linux && arm64)
|
|
|
|
|
2021-08-29 14:41:41 +00:00
|
|
|
package sqlite3
|
|
|
|
|
|
|
|
import (
|
|
|
|
"modernc.org/libc"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Format and write a message to the log if logging is enabled.
|
|
|
|
func X__ccgo_sqlite3_log(t *libc.TLS, iErrCode int32, zFormat uintptr, va uintptr) { /* sqlite3.c:29405:17: */
|
|
|
|
libc.X__ccgo_sqlite3_log(t, iErrCode, zFormat, va)
|
|
|
|
}
|
2025-02-03 12:13:51 +00:00
|
|
|
|
|
|
|
func PatchIssue199() {
|
|
|
|
// nop
|
|
|
|
}
|