github.com/SandwichDev/go-internals@v0.0.0-20210605002614-12311ac6b2c5/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 // +build linux,386 linux,arm linux,mips linux,mipsle 9 10 package unix 11 12 import "syscall" 13 14 func init() { 15 FcntlSyscall = syscall.SYS_FCNTL64 16 }