mirror of
https://github.com/rwinkhart/libmutton.git
synced 2026-08-28 04:46:42 -04:00
10 lines
95 B
Go
10 lines
95 B
Go
//go:build !returnOnExit
|
|
|
|
package backend
|
|
|
|
import "os"
|
|
|
|
func Exit(code int) {
|
|
os.Exit(code)
|
|
}
|