[chore]: Bump golang.org/x/crypto from 0.26.0 to 0.27.0 (#3283)

This commit is contained in:
dependabot[bot]
2024-09-09 08:24:38 +00:00
committed by GitHub
parent f3eebfcf80
commit 7785fa54da
34 changed files with 11289 additions and 1660 deletions

View File

@ -11,6 +11,7 @@ package unix
int ioctl(int, unsigned long int, uintptr_t);
*/
import "C"
import "unsafe"
func ioctl(fd int, req uint, arg uintptr) (err error) {
r0, er := C.ioctl(C.int(fd), C.ulong(req), C.uintptr_t(arg))