File: use_generic_stat.go

package info (click to toggle)
golang-github-djherbis-times 1.0.1%2Bgit20170215.d25002f-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 124 kB
  • sloc: makefile: 2
file content (10 lines) | stat: -rw-r--r-- 213 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
// +build !windows

package times

const hasPlatformSpecificStat = false

// do not use, only here to prevent "undefined" method error.
func platformSpecficStat(name string) (Timespec, error) {
	return nil, nil
}