mirror of
https://github.com/golang/go
synced 2024-11-18 11:34:45 -07:00
31881f8787
Fixes #58622 Change-Id: Ibb80296c39614478c75cb6bb04b6d0695cb990d3 Reviewed-on: https://go-review.googlesource.com/c/go/+/469795 Run-TryBot: Andy Pan <panjf2000@gmail.com> TryBot-Result: Gopher Robot <gobot@golang.org> Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-by: Bryan Mills <bcmills@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com>
18 lines
433 B
Go
18 lines
433 B
Go
// Copyright 2011 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.
|
|
|
|
package os
|
|
|
|
// Export for testing.
|
|
|
|
var Atime = atime
|
|
var LstatP = &lstat
|
|
var ErrWriteAtInAppendMode = errWriteAtInAppendMode
|
|
var TestingForceReadDirLstat = &testingForceReadDirLstat
|
|
var ErrPatternHasSeparator = errPatternHasSeparator
|
|
|
|
func init() {
|
|
checkWrapErr = true
|
|
}
|