]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blame - vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/time_unsupported.go
provider: Ensured Go 1.11 in TravisCI and README
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / fsouza / go-dockerclient / external / github.com / docker / docker / pkg / archive / time_unsupported.go
CommitLineData
9b12e4fe
JC
1// +build !linux
2
3package archive
4
5import (
6 "syscall"
7 "time"
8)
9
10func timeToTimespec(time time.Time) (ts syscall.Timespec) {
11 nsec := int64(0)
12 if !time.IsZero() {
13 nsec = time.UnixNano()
14 }
15 return syscall.NsecToTimespec(nsec)
16}