mirror of
https://github.com/BigJk/crt.git
synced 2026-02-06 10:47:25 +00:00
11 lines
153 B
Go
11 lines
153 B
Go
//go:build !windows && !js
|
|
// +build !windows,!js
|
|
|
|
package crt
|
|
|
|
import "syscall"
|
|
|
|
func SysKill() {
|
|
_ = syscall.Kill(syscall.Getpid(), syscall.SIGINT)
|
|
}
|