mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-29 20:22:26 -05:00
[chore]: Bump modernc.org/sqlite from 1.28.0 to 1.29.2 (#2718)
This commit is contained in:
parent
ea0efb8094
commit
adb4cdcf6c
356 changed files with 2619858 additions and 1869411 deletions
8
vendor/modernc.org/libc/libc64.go
generated
vendored
8
vendor/modernc.org/libc/libc64.go
generated
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue