blob: 7ca34881543f2f54a9893289ccf8504d229b5c23 [file] [log] [blame]
// +build linux,!cgo
package system
func GetClockTicks() int {
// when we cannot call out to C to get the sysconf it is fairly safe to
// just return 100
return 100
}