diff options
author | 2022-05-18 16:58:26 +0200 | |
---|---|---|
committer | 2022-05-18 15:58:26 +0100 | |
commit | f4b0d76cd4ae936a1d327c8a06adf0f50a80b8ad (patch) | |
tree | ae39ceff207b2f67dfc4a6971816f29d95507806 /vendor/modernc.org/libc/libc_netbsd.go | |
parent | [chore] Timeline test updates (#578) (diff) | |
download | gotosocial-f4b0d76cd4ae936a1d327c8a06adf0f50a80b8ad.tar.xz |
[performance] Add further indexes to mitigate laggy queries (#586)
* start adding more indexes as a migration
* update sqlite version
Diffstat (limited to 'vendor/modernc.org/libc/libc_netbsd.go')
-rw-r--r-- | vendor/modernc.org/libc/libc_netbsd.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/modernc.org/libc/libc_netbsd.go b/vendor/modernc.org/libc/libc_netbsd.go index 978c5955e..0ff1e9d26 100644 --- a/vendor/modernc.org/libc/libc_netbsd.go +++ b/vendor/modernc.org/libc/libc_netbsd.go @@ -1592,3 +1592,5 @@ func Xuuid_parse(t *TLS, in uintptr, uu uintptr) int32 { copy((*RawMem)(unsafe.Pointer(uu))[:unsafe.Sizeof(uuid.Uuid_t{})], r[:]) return 0 } + +func X__srget(t *TLS, stream uintptr) int32 { return Xgetc(t, stream) } |