Skip to content

Commit ec9a347

Browse files
committed
Optimizing code
1 parent b86658e commit ec9a347

File tree

5 files changed

+15
-0
lines changed

5 files changed

+15
-0
lines changed

core/stat/stat_darwin.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build darwin
2+
// +build darwin
3+
14
package stat
25

36
import (

core/stat/stat_freebsd.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build freebsd
2+
// +build freebsd
3+
14
package stat
25

36
import (

core/stat/stat_linux.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build linux
2+
// +build linux
3+
14
package stat
25

36
import (

core/stat/stat_openbsd.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build openbsd
2+
// +build openbsd
3+
14
package stat
25

36
import (

core/stat/stat_windows.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build windows
2+
// +build windows
3+
14
package stat
25

36
import (

0 commit comments

Comments
 (0)