1 // +build !linux 2 3 package lumberjack 4 5 import ( 6 "os" 7 ) 8 9 func chown(_ string, _ os.FileInfo) error { 10 return nil 11 } 12
View as plain text