mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-05 11:37:46 +00:00
f9f439ad49
Signed-off-by: leongross <leon.gross@9elements.com>
21 lines
363 B
Go
21 lines
363 B
Go
//go:build linux || unix
|
|
|
|
package syscall
|
|
|
|
func Exec(argv0 string, argv []string, envv []string) (err error)
|
|
|
|
// The two SockaddrInet* structs have been copied from the Go source tree.
|
|
|
|
type SockaddrInet4 struct {
|
|
Port int
|
|
Addr [4]byte
|
|
raw RawSockaddrInet4
|
|
}
|
|
|
|
type SockaddrInet6 struct {
|
|
Port int
|
|
ZoneId uint32
|
|
Addr [16]byte
|
|
raw RawSockaddrInet6
|
|
}
|