All checks were successful
Test / Create distribution (push) Successful in 36s
Test / Sandbox (push) Successful in 2m3s
Test / Hakurei (push) Successful in 2m59s
Test / Hpkg (push) Successful in 3m57s
Test / Sandbox (race detector) (push) Successful in 4m24s
Test / Hakurei (race detector) (push) Successful in 5m1s
Test / Flake checks (push) Successful in 1m26s
This should not be used and is not useful in other packages. Signed-off-by: Ophestra <cat@gensokyo.uk>
9 lines
157 B
Go
9 lines
157 B
Go
package app
|
|
|
|
//#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)) }
|