We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b86658e commit ec9a347Copy full SHA for ec9a347
core/stat/stat_darwin.go
@@ -1,3 +1,6 @@
1
+//go:build darwin
2
+// +build darwin
3
+
4
package stat
5
6
import (
core/stat/stat_freebsd.go
+//go:build freebsd
+// +build freebsd
core/stat/stat_linux.go
+//go:build linux
+// +build linux
core/stat/stat_openbsd.go
+//go:build openbsd
+// +build openbsd
core/stat/stat_windows.go
+//go:build windows
+// +build windows
0 commit comments