Fixed a build error.

geesefs-0-30-9
Aaron Jacobs 2015-03-16 12:24:40 +11:00
parent 47570943e4
commit f3df183df0
1 changed files with 6 additions and 0 deletions

View File

@ -55,6 +55,12 @@ func mtimeIs(c interface{}, expected time.Time) error {
return nil
}
// Extract the mtime from the result of os.FileInfo.Sys(), in a
// platform-specific way. If not supported on this platform, return !ok.
//
// Defined in stat_darwin.go, etc.
func extractMtime(sys interface{}) (mtime time.Time, ok bool)
// Match os.FileInfo values that specify a file birth time equal to the given
// time. On platforms where there is no birth time available, match all
// os.FileInfo values.