All checks were successful
Test / Create distribution (push) Successful in 37s
Test / Sandbox (push) Successful in 2m23s
Test / Hakurei (push) Successful in 3m9s
Test / Hpkg (push) Successful in 4m7s
Test / Sandbox (race detector) (push) Successful in 4m11s
Test / Hakurei (race detector) (push) Successful in 5m1s
Test / Flake checks (push) Successful in 1m30s
These are free of the dispatcher from internal/app. This change relocates them into their own package. Signed-off-by: Ophestra <cat@gensokyo.uk>
9 lines
161 B
Go
9 lines
161 B
Go
package validate
|
|
|
|
//#include <unistd.h>
|
|
import "C"
|
|
|
|
const SC_LOGIN_NAME_MAX = C._SC_LOGIN_NAME_MAX
|
|
|
|
func Sysconf(name C.int) int { return int(C.sysconf(name)) }
|