github.com/hxx258456/ccgo@v0.0.5-0.20230213014102-48b35f46f66f/internal/syscall/unix/fcntl_linux_32bit.go (about) 1 // Copyright 2019 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // On 32-bit Linux systems, use SYS_FCNTL64. 6 // If you change the build tags here, see syscall/flock_linux_32bit.go. 7 8 //go:build (linux && 386) || (linux && arm) || (linux && mips) || (linux && mipsle) 9 // +build linux,386 linux,arm linux,mips linux,mipsle 10 11 package unix 12 13 import "syscall" 14 15 func init() { 16 FcntlSyscall = syscall.SYS_FCNTL64 17 }