forked from security/hakurei
Having it at the project root never made sense since the "ego" name was deprecated. This change finally addresses it. Signed-off-by: Ophestra <cat@gensokyo.uk>
9 lines
161 B
Go
9 lines
161 B
Go
package internal
|
|
|
|
//#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)) }
|