You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gopsutil/host/types_darwin.go

22 lines
233 B
Go

3 years ago
//go:build ignore
// +build ignore
3 years ago
// plus hand editing about timeval
/*
Input to cgo -godefs.
*/
package host
/*
#include <sys/time.h>
#include <utmpx.h>
*/
import "C"
3 years ago
type (
Utmpx C.struct_utmpx
Timeval C.struct_timeval
)