diff options
author | Dan Kegel <[email protected]> | 2022-04-09 18:54:28 -0700 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-04-18 22:52:14 +0200 |
commit | 0590ccb2602a1acc281d21d9a43192544be96250 (patch) | |
tree | fbcca7d986b1708c344c904dab14f5f684a8b078 | |
parent | fe0acb16703110007b53688d54e5a784bbc611d8 (diff) | |
download | tinygo-0590ccb2602a1acc281d21d9a43192544be96250.tar.gz tinygo-0590ccb2602a1acc281d21d9a43192544be96250.zip |
gofmt exec_posix.go
-rw-r--r-- | src/os/exec_posix.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os/exec_posix.go b/src/os/exec_posix.go index 4d453099b..f100d6317 100644 --- a/src/os/exec_posix.go +++ b/src/os/exec_posix.go @@ -2,11 +2,11 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package os - //go:build aix || darwin || dragonfly || freebsd || (js && wasm) || linux || netbsd || openbsd || solaris || windows // +build aix darwin dragonfly freebsd js,wasm linux netbsd openbsd solaris windows +package os + import ( "syscall" ) |