mirror of
https://github.com/golang/sys.git
synced 2026-02-08 03:36:03 +03:00
Follow CL 20022 and consistently use single space after a period in documentation. Generated with: $ perl -i -npe 's,^(\s*// .+[a-z]\.) +([A-Z]),$1 $2,' $(git grep -l -E '^\s*//(.+\.) +([A-Z])') Change-Id: Ia29ad823668f060e81293e848a79fc4b4857d94b Reviewed-on: https://go-review.googlesource.com/73530 Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
21 lines
429 B
Go
21 lines
429 B
Go
// Copyright 2015 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build gccgo,linux,amd64
|
|
|
|
package unix
|
|
|
|
import "syscall"
|
|
|
|
//extern gettimeofday
|
|
func realGettimeofday(*Timeval, *byte) int32
|
|
|
|
func gettimeofday(tv *Timeval) (err syscall.Errno) {
|
|
r := realGettimeofday(tv, nil)
|
|
if r < 0 {
|
|
return syscall.GetErrno()
|
|
}
|
|
return 0
|
|
}
|