1 //go:build !linux 2 // +build !linux 3 4 package main 5 6 import ( 7 "errors" 8 ) 9 10 func capset() error { 11 return errors.New("setcap is only implemented on GOOS=linux") 12 } 13
View as plain text