mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-07-21 00:59:22 +00:00
9 lines
196 B
Go
9 lines
196 B
Go
package os
|
|
|
|
import _ "unsafe"
|
|
|
|
//go:linkname nanotime runtime.nanotime
|
|
func nanotime() int64
|
|
|
|
// Nanotime returns a monotonic timestamp in nanoseconds.
|
|
func Nanotime() int64 { return nanotime() }
|