[chore]: Bump modernc.org/sqlite from 1.28.0 to 1.29.2 (#2718)

This commit is contained in:
dependabot[bot] 2024-03-04 09:42:11 +00:00 committed by GitHub
commit adb4cdcf6c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
356 changed files with 2619858 additions and 1869411 deletions

8
vendor/modernc.org/libc/libc64.go generated vendored
View file

@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build amd64 || arm64 || ppc64le || riscv64 || s390x || loong64
// +build amd64 arm64 ppc64le riscv64 s390x loong64
//go:build amd64 || arm64 || ppc64le || riscv64 || s390x || loong64 || mips64le
// +build amd64 arm64 ppc64le riscv64 s390x loong64 mips64le
package libc // import "modernc.org/libc"
@ -35,6 +35,10 @@ func (b bits) has(n int) bool { return b != nil && b[n>>6]&(1<<uint(n&63)) != 0
func (b bits) set(n int) { b[n>>6] |= 1 << uint(n&63) }
func Xstrchrnul(tls *TLS, s uintptr, c int32) (r uintptr) {
if __ccgo_strace {
trc("tls=%v s=%v c=%v, (%v:)", tls, s, c, origin(2))
defer func() { trc("-> %v", r) }()
}
var k types.Size_t
var w uintptr
_, _ = k, w