github.com/x04/go/src@v0.0.0-20200202162449-3d481ceb3525/runtime/timeasm.go (about) 1 // Copyright 2017 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // Declarations for operating systems implementing time.now directly in assembly. 6 7 // +build windows 8 9 package runtime 10 11 import _ "github.com/x04/go/src/unsafe" 12 13 //go:linkname time_now time.now 14 func time_now() (sec int64, nsec int32, mono int64)