mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-09 05:23:40 +00:00
ccfe92a58c
Signed-off-by: Achille Roussel <achille.roussel@gmail.com>
23 lines
673 B
Go
23 lines
673 B
Go
//go:build baremetal || (wasm && !wasi)
|
|
|
|
// 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}
|
|
}
|