Jeff Mitchell 43493f2767 Bump deps
2018-01-26 18:51:00 -05:00

13 lines
142 B
Go

// +build cgo,linux
package system
/*
#include <unistd.h>
*/
import "C"
func GetClockTicks() int {
return int(C.sysconf(C._SC_CLK_TCK))
}