mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-06 03:53:42 +00:00
ee3af40cab
Signed-off-by: Achille Roussel <achille.roussel@gmail.com>
22 lines
491 B
Go
22 lines
491 B
Go
//go:build baremetal || js || windows
|
|
|
|
// Copyright 2009 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
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
type dirInfo struct {
|
|
}
|
|
|
|
func (*dirInfo) close() {
|
|
}
|
|
|
|
func (f *File) readdir(n int, mode readdirMode) (names []string, dirents []DirEntry, infos []FileInfo, err error) {
|
|
return nil, nil, nil, &PathError{Op: "readdir unimplemented", Err: syscall.ENOTDIR}
|
|
}
|