9195aa172b
Since aix/ppc64 has been added to GC toolchain, a mix between new and old files were created in gcc toolchain. This commit corrects this merge for aix/ppc64 and aix/ppc. Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/167658 From-SVN: r269797
21 lines
423 B
Go
21 lines
423 B
Go
// Copyright 2012 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 aix hurd linux dragonfly openbsd solaris
|
|
|
|
package tar
|
|
|
|
import (
|
|
"syscall"
|
|
"time"
|
|
)
|
|
|
|
func statAtime(st *syscall.Stat_t) time.Time {
|
|
return time.Unix(st.Atim.Unix())
|
|
}
|
|
|
|
func statCtime(st *syscall.Stat_t) time.Time {
|
|
return time.Unix(st.Ctim.Unix())
|
|
}
|