blob: b3a07cba3efa1dc0aa1f8ec95237874f2516a68f [file] [log] [blame] [edit]
// +build cgo,linux cgo,freebsd
package system
/*
#include <unistd.h>
*/
import "C"
func GetClockTicks() int {
return int(C.sysconf(C._SC_CLK_TCK))
}