testsuite: Skip 90020.c on AIX.
[official-gcc.git] / libgo / go / runtime / timeasm.go
blob6bfaa8a8f0ea0d7f085dc5d76c58a700a606c4b2
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.
5 // Declarations for operating systems implementing time.now directly in assembly.
7 // +build ignore
8 // +build windows
10 package runtime
12 import _ "unsafe"
14 //go:linkname time_now time.now
15 func time_now() (sec int64, nsec int32, mono int64)