Files
tinygo/src/os/stat_other.go
T
deadprogram 3eee686932 fix: allow nintendoswitch target to compile
Signed-off-by: deadprogram <ron@hybridgroup.com>
2024-12-04 15:53:49 +01:00

23 lines
711 B
Go

//go:build baremetal || (tinygo.wasm && !wasip1 && !wasip2) || nintendoswitch
// Copyright 2016 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
// Stat is a stub, not yet implemented
func (f *File) Stat() (FileInfo, error) {
return nil, ErrNotImplemented
}
// statNolog stats a file with no test logging.
func statNolog(name string) (FileInfo, error) {
return nil, &PathError{Op: "stat", Path: name, Err: ErrNotImplemented}
}
// lstatNolog lstats a file with no test logging.
func lstatNolog(name string) (FileInfo, error) {
return nil, &PathError{Op: "lstat", Path: name, Err: ErrNotImplemented}
}