mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-16 02:33:28 +00:00
all: add support for Windows
This commit is contained in:
committed by
Ron Evans
parent
8906192690
commit
7369a0e7f2
@@ -0,0 +1,13 @@
|
||||
package main
|
||||
|
||||
// This file contains utility functions for Windows.
|
||||
|
||||
import (
|
||||
"os/exec"
|
||||
)
|
||||
|
||||
// setCommandAsDaemon makes sure this command does not receive signals sent to
|
||||
// the parent. It is unimplemented on Windows.
|
||||
func setCommandAsDaemon(daemon *exec.Cmd) {
|
||||
// Not implemented.
|
||||
}
|
||||
Reference in New Issue
Block a user